Android:带标题栏的全屏活动

mah*_*di 7 android themes android-activity

我想用标题栏设置我的活动全屏,我该怎么做?谢谢

小智 11

在styles.xml中:

<resources>
   <style name="Theme.FullScreen" parent="@android:style/Theme.Holo">
   <item name="android:windowNoTitle">false</item>
   <item name="android:windowFullscreen">true</item>
   </style>
</resources>
Run Code Online (Sandbox Code Playgroud)

请参阅mainfest中的自定义样式:

<activity android:name=".MyActivity" android:theme="@style/Theme.FullScreen"/>
Run Code Online (Sandbox Code Playgroud)

说实话,我自己没有测试过这种组合.