• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Remove Title Bar?

ac4android

Well-Known Member
I am trying to reclaim the screen real estate taken up by the title bar.
I looked up stack overflow and other sites, none of which work. A/S2.3 will not yield back the screen space. How do I reclaim the space?

NoTitleBar.JPG
 
You want to hide the action bar ? You can add below code to your onCreate method before setContentView.

Code:
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 0);
 
Back
Top Bottom