Blank title in action bar

2020-08-23 01:43发布

问题:

Is it possible to remove title bar which I think is ugly and doesn't fit in my application but still use actionbar? After I call

    requestWindowFeature(Window.FEATURE_NO_TITLE | Window.FEATURE_ACTION_BAR);

the title bar stays but piece of my view is gone(cant scroll up)

Is it possible to get rid of title bar but still keep actionbar, if I dont request it as window feature getActionBar() returns null everytime..

回答1:

Following Honeycomb, Action Bar was introduced to provide more functionalities, Well you can hide logo and title from it using this

ActionBar ab = getActionBar(); 
ab.setDisplayShowTitleEnabled(false); 
ab.setDisplayShowHomeEnabled(false);