How to change size of title's text on Action Bar?

后端 未结 6 1224
攒了一身酷
攒了一身酷 2020-11-28 13:20

There is an ActionBar on each Android 4.0 application, and it got a title. I need to make this size less. But I don\'t understand how I can do it, because

6条回答
  •  粉色の甜心
    2020-11-28 13:59

    I have followed this method to skip the creation of custom style:

    1. Create a custom layout with required text size and
    2. apply that to your action bar.

    1) Create a layout file (titlebar.xml):

    
    
    
        
    
    

    Here set your required textSize.

    2) MainActivity.java

        getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM); //bellow setSupportActionBar(toolbar);
        getSupportActionBar().setCustomView(R.layout.titlebar);
    

    hope this helps.

提交回复
热议问题