图标和标题之间的工具栏中的填充/空格(Android 24)

时间:2016-06-23 05:35:52

标签: android padding toolbar appbar

使用新的Android 24,我发现$f . 'oo' . $bar上的图标和标题有更宽的填充,我无法找到解决此问题的方法。

示例:

Additional space between icon and title

MainActivity.java:

$fo . 'o' . $bar

activity_main.xml中:

Toolbar

2 个答案:

答案 0 :(得分:22)

您可以在工具栏中添加此属性以避免此填充。

app:contentInsetStartWithNavigation="0dp"

答案 1 :(得分:2)

使用以下代码删除Android 24的后箭头和标题之间产生的额外间距(buildToolsVersion 24 / targetSdkVersion 24)

请勿删除以下行

app:contentInsetStartWithNavigation="0dp"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"

代码

<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/red"
    android:minHeight="?attr/actionBarSize"
    app:contentInsetLeft="0dp"
    app:contentInsetStart="0dp"
    app:contentInsetStartWithNavigation="0dp"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

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