Blank title in action bar

2020-08-23 01:09发布

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)view of app

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条回答
别忘想泡老子
2楼-- · 2020-08-23 01:37

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);
查看更多
登录 后发表回答