Android菜鸟笔记-Android平板实现全屏模式隐藏虚拟键和状态栏

So easy!!

两行代码轻松搞定!

进入全屏(隐藏虚拟按键):

getWindow().getDecorView().setSystemUiVisibility(8);// rockchip platform solution is 8;other platform is 2

退出全屏(显示虚拟按键):

getWindow().getDecorView().setSystemUiVisibility(0);


你可能感兴趣的:(Android菜鸟笔记-Android平板实现全屏模式隐藏虚拟键和状态栏)