Toolbar标题居中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Toolbar标题居中相关的知识,希望对你有一定的参考价值。
问题:
没有用toolbar本身的title来设置标题,而是自定义了一个布局文件,但是title怎么都不居中,有一些偏差,后来发现toolbar的左边有偏移。
解决办法:
toolbar中有一个属性contentInsetStart是用来设置左边偏移的,将偏移设置为0.
<android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="48dp" app:layout_collapseMode="pin" app:contentInsetStart="0dp" android:background="@color/main_color">
以上是关于Toolbar标题居中的主要内容,如果未能解决你的问题,请参考以下文章