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
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.