Android: How to Center title in ToolBar

后端 未结 19 2007
执念已碎
执念已碎 2020-11-27 19:04

I am using ToolBar in my project first time, so i do not know how to customized the toolbar in android. I need to centered title in to the tool bar and how to do that please

19条回答
  •  暖寄归人
    2020-11-27 19:45

    I didn't understand you Question Completely .. but i found Solution Like this

    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);
    

提交回复
热议问题