I know that adding android:theme="@android:style/Theme.NoTitleBar"
to the manifest removes the title, but what do I do to remove the notifications bar?
Asked
Active
Viewed 747 times
4

GeorgePotter
- 889
- 1
- 10
- 18

AnimatedRNG
- 1,859
- 3
- 26
- 39
1 Answers
5
Use android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
.
Please use this judiciously. Users like being able to see their notifications, signal strength, battery charge, etc.

CommonsWare
- 986,068
- 189
- 2,389
- 2,491
-
Thanks, that worked well. By the way, I plan to use fullscreen in a game. – AnimatedRNG Dec 02 '10 at 02:03
-
@WRU4Android: Games are a fairly common use case for this particular theme, so users should not be surprised by it. – CommonsWare Dec 02 '10 at 12:06