How to Make my Android App FullScreen via Android Manifest?

android, sdk

Solution

Go into the manifest and use a full screen theme.

 <activity
       android:name=".Foo"   
       android:label="@string/foo" 
       android:theme="@android:style/Theme.NoTitleBar.Fullscreen">

Problem

How do I do this? Any suggestions? BTW I am using SDK with AIDE.

Original source