去掉標題列:
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">
或者代碼裡:
requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉標題列
注意這句一定要寫在setContentView()方法的前面,不然會報錯的。而且這種有時候會看到程式啟動後標題列閃一下消失的情況。
自訂佈景主題去掉標題列:在res/values目錄下,建立style.xml
<?xml version="1.0" encoding="UTF-8" ?><resources><style name="notitle"><item name="android:windowNoTitle">true</item></style></resources>
然後在AndroidManifest.xml檔案中定義
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/notitle" >
三種方法,當然是第一種最簡單最省事。
保持全屏的方法:一共三種:
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
<application application="" android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/fullscreem" >