以往
在每个activity的onCreate方法中都要写一句
requestWindowFeature(Window.FEATURE_NO_TITLE);
那是十分麻烦的事情...
现在
只要在资源文件res-values下的styles配置一下即可:
<style name="AppTheme" parent="AppBaseTheme"> <item name="android:windowNoTitle">true</item> </style>
然后在清单文件中引用该主题文件:
<application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > ... </application>
网友评论