Setting Action Bar title and subtitle

后端 未结 12 742
盖世英雄少女心
盖世英雄少女心 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:05

    Try This:

    In strings.xml add your title and subtitle...

    ActionBar ab = getActionBar();
    ab.setTitle(getResources().getString(R.string.myTitle));
    ab.setSubtitle(getResources().getString(R.string.mySubTitle));
    

提交回复
热议问题