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?
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.