Request: Hide status bar

Monkey Targets Forums/Android/Request: Hide status bar

Virtech(Posted 2011) [#1]
I miss being able to hide the default android status bar displayed on top of the running monkey app. You know the bar that shows battery charge etc.


BigAnd(Posted 2011) [#2]
You can add:
android:theme= "@android:style/Theme.NoTitleBar.Fullscreen"

to the AndroidManifest.xml in the activity section.

e.g.
<activity android:name= "MonkeyGame"
android:label= "@string/app_name"
android:theme= "@android:style/Theme.NoTitleBar.Fullscreen">



therevills(Posted 2011) [#3]
Also you can force the screen orientation this way:

<activity android:name="MonkeyGame"
          android:label="@string/app_name"
          android:screenOrientation="landscape"
          android:theme= "@android:style/Theme.NoTitleBar.Fullscreen">



Virtech(Posted 2011) [#4]
Perfect! Thanks both of you :)


Supertino(Posted 2011) [#5]
Man spent hours trying to find out how to hide the taskbar and here it is in a forum post.. grrrr.


Perturbatio(Posted 2011) [#6]
Yep, it's always in the last place you look isn't it? ;)