My Image我正在XML的Appbar布局内使用默认的工具栏设计。
Remove space between menu icon and title
android:layout_height =“ wrap_content” android:theme =“ @ style / AppTheme.AppBarOverlay”>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/toolbarColor"
app:contentInsetStartWithNavigation="@dimen/_1sdp"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
答案 0 :(得分:1)
回复迟了一点,但它可以帮助某人,目前通过使用androidx工具栏检查以下代码:
<androidx.appcompat.widget.Toolbar
...
app:contentInsetStart="0dp"
app:contentInsetStartWithNavigation="0dp"
app:titleMarginStart="0dp"/>
只需添加这三行
答案 1 :(得分:0)
添加这两行...
<android.support.v7.widget.Toolbar
...
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
...
/>