Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Make my Android App FullScreen via Android Manifest?

Tags:

android

sdk

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

like image 638
apw2012 Avatar asked Sep 26 '12 01:09

apw2012


People also ask

How do I make Android emulator full screen?

Alt+Enter is the keyboard shortcut to toggle full screen mode in the emulator, just do it again to exit full screen.

How do I change full screen mode on Android?

Go to 'Settings > Display' Scroll down and tap on 'Full-screen apps' Toggle off the full-screen mode for any app in the list.


1 Answers

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">
like image 183
SquiresSquire Avatar answered Sep 20 '22 17:09

SquiresSquire