在AppCompatActivity(或ActionBarActivity)中不能再用requestWindowFeature(Window.FEATURE_NO_TITLE)
的方法設置去掉標題(早已淘汰)。之後直接在在style.xml裏更改主題:android
<resources> <!-- Base application theme --> <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <!-- Customize your theme here. --> </style> <!-- Activity無標題欄+全屏 開始--> <style name="NoTitle" parent="Theme.AppCompat.Light.NoActionBar"> <item name="android:windowNoTitle">true</item> <!-- 兼容API 7--> <item name="android:windowActionBar">false</item> <!-- Activity全屏 開始--> <item name="android:windowFullscreen">true</item> <item name="android:windowContentOverlay">@null</item> </style> <!-- Activity無標題欄 結束--> </resources>
而後在AndroidManifest.xml裏將android:theme更改成android:theme="@style/NoTitle"
便可。app