Android App 隐藏显示标题栏、状态栏、导航栏

1. 隐藏当前Activity标题栏
在当前Activity中调用:this.requestWindowFeature(Window.FEATURE_NO_TITLE);

2. 隐藏当前Activity状态栏(Status Bar)
2.1 Android 4.0 and Lower

public class MainActivity extends Activity {        @Override      protected void onCreate(Bundle savedInstanceState) {          super.onCreate(savedInstanceState);          // If the Android version is lower than Jellybean, use this call to hide          // the status bar.          if (Build.VERSION.SDK_INT < 16) {              getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,                      WindowManager.LayoutParams.FLAG_FULLSCREEN);          }          setContentView(R.layout.activity_main);      }      }  

2.2 Android 4.1 and Higher

View decorView = getWindow().getDecorView();  // Hide the status bar.  int uiOptions = View.SYSTEM_UI_FLAG_FULLSCREEN;  decorView.setSystemUiVisibility(uiOptions);  // Remember that you should never show the action bar if the  // status bar is hidden, so hide that too if necessary.  ActionBar actionBar = getActionBar();  actionBar.hide(); 

3. 隐藏当前Activity界面的导航栏(NavigationBar),在定制项目实际中遇到过
在Android4.0及以后版本中,可通过以下方法隐藏NavigationBar

View decorView = getWindow().getDecorView();  // Hide both the navigation bar and the status bar.  // SYSTEM_UI_FLAG_FULLSCREEN is only available on Android 4.1 and higher, but as  // a general rule, you should design your app to hide the status bar whenever you  // hide the navigation bar.  int uiOptions = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION                | View.SYSTEM_UI_FLAG_FULLSCREEN;  decorView.setSystemUiVisibility(uiOptions); 

4. 隐藏所有Activity界面的标题栏
 修改AndroidManifest.xml
 在application 标签中添加a
android:theme="@android:style/Theme.NoTitleBar"

5. 隐藏所有Activity界面的TitleBar 和StatusBar
  修改AndroidManifest.xml
  在application 标签中添加
  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

更多相关文章

  1. Android中横竖屏、全屏、无标题设置
  2. android 拍照 onCreate() 调用两次的问题
  3. Android(安卓)创建android Splash界面以及避免app闪屏现象
  4. Android(安卓)Activity界面切换添加动画特效
  5. android 关于tts的一些参数
  6. Android:用定时器刷 timer 新界面
  7. android实现开机欢迎界面
  8. ListView使用技巧
  9. Android(安卓)侧滑菜单的实现

随机推荐

  1. 【Android 应用开发】GitHub 优秀的 Andr
  2. [android]android命令行截图
  3. Android应用程序的权限列表
  4. Android在应用中固定屏幕方向
  5. android ExpandableListView简单例子
  6. OpenGL ES for Android 绘制线
  7. 修改ZXing for Android为竖屏模式
  8. [android警告] AndroidManifest.xml警告
  9. Android中RelativeLayout的字符水平(垂直
  10. 界面布局