在實際的應用程序開發中,咱們有時須要把 Activity 設置成全屏顯示,通常狀況下,能夠經過兩種方式來設置全屏顯示效果: android
其一,經過在代碼中能夠設置, app
其二,經過manifest配置文件來設置全屏。 ide
其一:在代碼onCreate裏面setContentView以前設置(以下)
view plaincopy to clipboardprint?
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//取消標題
requestWindowFeature(Window.FEATURE_NO_TITLE);
//取消狀態欄
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.main);
} idea
但要注意的是:在代碼中設置的話,設置無標題和設置全屏的兩段代碼要放置在 setContentView(R.layout.main)(界面渲染,完成了再全屏是不行的)這段代碼的前面。要否則會報錯。 spa
其二:在manifest配置文件中設置 .net
①在res/values 目錄建立個theme.xml文件(用來放樣式) code
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- name 是Style的名稱,parent 繼承那個父類樣式 -->
<style name="theme_fullScreen" parent="android:Theme.Black">
<item name="android:windowNoTitle">true</item> <!-- 設置無標題 -->
<item name="android:windowFullscreen">?android:windowNoTitle</item> <!-- 是否填充慢屏幕,引用android:windowNoTitle 的值 ?android:windowNoTitle,取決於android:windowNoTitle的值-->
</style>
</resources> xml
②<activity android:name=".login.LoginActivity" android:theme="@style/theme_fullScreen"/> blog
view plaincopy to clipboardprint?
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.andyidea"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".login.LoginActivity"
android:theme="@android :style/Theme.NoTitleBar.Fullscreen"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest> 繼承
只去程序標題欄 設置整個應用 no title
第三種:這種在通常的應用中不經常使用,就是在res/values目錄下面新建一個style.xml的文件例如:
<?xml version="1.0" encoding="UTF-8" ?> <resources> <style name="theme_notitle"> <item name="android:windowNoTitle">true</item> </style> </resources>
這樣,咱們就自定義了一個style,就至關於一個主題,而後在AndroidManifest.xml文件中定義
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/theme_notitle">
這樣也能夠達到去掉標題欄的效果