Is there a theme for Holo, full screen but with Action Bar?

kishu27 picture kishu27 · Apr 13, 2012 · Viewed 21.5k times · Source

I need to make an activity appear such that the activity remains full screen (no title bar) but with the Action Bar present.

App uses Holo Light for its interfaces.

Is there such a style/theme?

Answer

WarrenFaith picture WarrenFaith · Jul 10, 2013

I had the same "issue" and what I do is basically the good old way:

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

This combined with the normal Theme.Holo results in an UI with Actionbar but no Notification area.