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