android隐藏Navigationbar

写博客不是因为自己牛逼,而是技术太菜,脑容量太小,记不住东西,搞了半天隐藏导航栏终于搞好了,在此记录下,以备之后再用
隐藏:
View decorView = getWindow().getDecorView();

int option = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
        | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;

 decorView.setSystemUiVisibility(option);

显示:

getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE);

猜你喜欢

转载自blog.csdn.net/weixin_39094812/article/details/84948430