application name center alignment in android`

后端 未结 5 1145
花落未央
花落未央 2020-12-11 18:14

Can i center align the application name in android

by default the application name is aligned in the left side.

so how to make it aligned it center

5条回答
  •  醉梦人生
    2020-12-11 19:18

    To use a custom title in your Toolbar all you need to do is remember is that Toolbar is just a fancy ViewGroup so you can add a custom title like so:

    
    
    
         
    
    
        

    This means that you can style the TextView however you would like because it's just a regular TextView. So in your activity you can access the title like so:

    Toolbar toolbarTop = (Toolbar) findViewById(R.id.toolbar_top);
    TextView mTitle = (TextView) toolbarTop.findViewById(R.id.toolbar_title);
    

提交回复
热议问题