问题:
没有用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">
时间: 2024-10-28 13:26:20