style.xml
<style
name="AppTheme"
parent="AppBaseTheme">
<item
name="android:windowNoTitle">true</item>
<item
name="android:windowFullscreen">true</item>
</style>
AndroidManifest.xml
<application
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
...........
</application>
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
...........
</application>
Comments
Post a Comment