小智 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)
说实话,我自己没有测试过这种组合.