Setting Action Bar title and subtitle

后端 未结 12 735
盖世英雄少女心
盖世英雄少女心 2020-12-01 02:41

I want to set title and subtitile of my action bar before compile time. I got a way to do it like this:

ActionBar ab = getActionBar();
ab.setTitle(\"My Title         


        
12条回答
  •  南方客
    南方客 (楼主)
    2020-12-01 03:10

    There is another option that no one commented, from the Support Library V7 was implemented by Google ActionBarSupport, which is compatible ActionBar from Android 2.2 to the last.
    If you change your ActionBar this you can do getSupportActionBar().setTitle("") on all Android versions.

提交回复
热议问题