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

时间:2015-10-21 15:41:06

标签: android icons navigation-drawer padding toolbar

有没有人知道如何减少工具栏上的导航图标和徽标之间的填充。出于某种原因,它们之间似乎有更多的空间,然后是我的标识和标题。

我已经尝试添加样式并使用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)

2 个答案:

答案 0 :(得分:14)

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

  

contentInsetStart不同,这只会在那里修改插图   是一个导航图标。如果没有导航图标,您将会   仍然有16dp开始插入。

答案 1 :(得分:2)

只需在工具栏中添加app:contentInsetStart="0dp"

在添加app:contentInsetStart="0dp"输出之前:

enter image description here

添加app:contentInsetStart="0dp"输出后:

enter image description here 希望它的帮助。 完成