Showing posts with label Android Window Full Screen. Show all posts
Showing posts with label Android Window Full Screen. Show all posts

Tuesday, March 18, 2014

Android Set Window Full Screen (No Title)

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>