Toolbar title not in center when Back Button is enable

前端 未结 6 658
名媛妹妹
名媛妹妹 2021-02-02 13:53

I\'m trying to display my toolbar title in the center and to do it I use the method which is given in this answer :-Toolbar Center title

However, when I enable back butt

6条回答
  •  说谎
    说谎 (楼主)
    2021-02-02 14:02

    Add a TextView inside the Toolbar & don't forget to set the following attribute inside your TextView.

    android:layout_marginRight="?android:attr/actionBarSize"

    OR

    android:layout_marginEnd="?android:attr/actionBarSize"

    code snippet:

    
        
    
    
    

    Refer to this tutorial for more information.

提交回复
热议问题