首先在res\values下的styles.xml中加入如下自定义主题样式代码
java
<style name="AppTheme" parent="android:Theme.Light"> <item name="android:windowNoTitle">true</item> <!-- Customize your theme here. --> </style>
而后在清单文件manifest.xml中加入如下代码,将主题样式引用过去android
<application ...... android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" >