Android 隐藏Home键、返回键
WindowManager.LayoutParams params = getWindow().getAttributes();
params.systemUiVisibility =View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
getWindow().setAttributes(params);
WindowManager.LayoutParams params = getWindow().getAttributes();
params.systemUiVisibility =View.SYSTEM_UI_FLAG_HIDE_NAVIGATION;
getWindow().setAttributes(params);