Android中隱藏標題欄和狀態欄(電源,信號,時間等信息):
一、
在頁面的 setContentView 方法前加入
- private void HideStatusBar()
- {
- //隱藏標題
- requestWindowFeature(Window.FEATURE_NO_TITLE);
-
- //定義全屏參數
- int flag = WindowManager.LayoutParams.FLAG_FULLSCREEN;
- //獲得窗口對象
- Window myWindow = this.getWindow();
- //設置Flag標識
- myWindow.setFlags(flag, flag);
- }
在
AndroidManifest.xml 文件中
application 節點加入
android:theme="@android:style/Theme.NoTitleBar"二、
在
AndroidManifest.xml 文件中
application 節點加入
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"