android – 减少工具栏上导航图标和徽标之间的填充

有谁知道如何减少工具栏上的导航图标和徽标之间的填充.由于某种原因,它们之间似乎有更多的空间,然后在我的徽标和标题之间.

我已经尝试添加样式并使用contentInset但它们似乎都不起作用.

我的布局

<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/background_grey"
android:style="@style/ToolbarTheme"
android:contentInsetLeft="0dp"
android:contentInsetStart="0dp"
app:logo="@drawable/ic_launcher">

</android.support.v7.widget.Toolbar>

我的风格

<style name="ToolbarTheme" parent="Theme.AppCompat">
    <item name="android:minWidth">0dip</item>
    <item name="android:paddingLeft">0dip</item>
    <item name="android:paddingRight">0dip</item>
</style>

Image (Space indicated by red lines should be smaller)

解决方法:

如果您只对缩小工具栏上导航图标和徽标之间的填充感兴趣,请使用
Toolbar.setContentInsetStartWithNavigation(0)

Unlike contentInsetStart, this will modify the inset only when there
is a Navigation Icon. In the absence of the Navigation Icon, you will
still have the 16dp start inset.

上一篇:安卓菜鸟


下一篇:Android工具栏菜单文字颜色