我正在为(蜂窝)平板电脑开发一个应用程序,想要一个全屏视图。如何隐藏包含后退按钮的栏?
答案 0 :(得分:3)
除非你有一个root设备,否则似乎没有办法完全隐藏它。 请在此处查看Romain Guy的答案:Is there a way to hide the system bar in Android 3.0? It's an internal device and I'm managing navigation
但是,你可以调暗它。让它们变得无形,而不是你看到的点。使用LIGHTS_OUT
View v = findViewById(R.id.view_id);
v.setSystemUiVisibility(View.STATUS_BAR_HIDDEN);
参考,在这里回答:Hiding Systembar in android 3.0(honeycomb)
或者换句话说,搜索隐藏系统栏android。