本文主要是介绍Android AppCompatActivity去掉标题栏,全屏,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在styles.xml里添加
<style name="FullScreenTheme" parent="Theme.AppCompat.Light.NoActionBar"><item name="android:windowNoTitle">true</item><item name="android:windowFullscreen">true</item><item name="android:windowActionBar">false</item> </style>
再将AndroidManifest.xml里的
android:theme="@style/AppTheme"改为
android:theme="@style/FullScreenTheme"即可
这篇关于Android AppCompatActivity去掉标题栏,全屏的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!