1 问题
androidx.appcompat.widget.Toolbar默认左边有间距
2 解决办法
在Toolbar下面添加如下熟悉
app:contentInsetLeft="0dp"app:contentInsetStart="0dp"app:contentInsetEnd="0dp"app:maxButtonHeight="20dp"app:titleMargin="0dp"
<androidx.appcompat.widget.Toolbarandroid:layout_width="match_parent"android:layout_height="50dp"app:layout_collapseMode="pin"app:contentInsetLeft="0dp"app:contentInsetStart="0dp"app:contentInsetEnd="0dp"app:maxButtonHeight="20dp"app:titleMargin="0dp">