Possible Duplicate:
How to hide the title bar for an Activity in XML with existing custom theme
i remove the action bar by
requestWindowFeature(Window.FEATURE_NO_TITLE);
however, when the app starts, the action bar appears in a very short time before it executes the above statement.
how can I make it totally disappear?
thank
I’ve noticed that if you set the theme in the AndroidManifest, it seems to get rid of that short time where you can see the action bar. So, try adding this to your manifest:
Just add it to your
applicationtag to apply it app-wide.