第三种:在res/values目录下面新建一个style.xml的文件这种方法是有经验的开发者最喜欢的方法,因为它把功能分开的;对于后期的维护非常方便。个人建议用第三种方法:
styleAndroidManifest.xml <?xml version="1.0" encoding="UTF-8" ?>
<resources>
<style name="concealTitle">
<item name="android:windowNoTitle">true</item>
</style>
</resources>
定义完了一个style,接下来就是在AndroidManifest.xml中使用了:
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/concealTitle">