Android工具栏没有正确调整大小

时间:2016-08-09 02:01:22

标签: android toolbar

我有一个安卓工具栏,在工具栏中我有一个editText,而editText正在做一个我不想要的边距。

这是一张图片:

http://imageshack.com/a/img923/3306/Njhv61.png

以下是工具栏代码:

  <?xml version="1.0" encoding="utf-8"?>

<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_top"
    android:background="@drawable/background_toolbar_top"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <EditText
        android:id="@+id/buscador"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textSize="10dp"
        android:textColor="#666"
        android:background="#ccc"
        android:textColorHint="#cccc"
        android:hint="Buscar"/>


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

工具栏的背景:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <item>
        <shape android:shape="rectangle">
            <solid android:color="#333"></solid>
        </shape>
    </item>

    <item android:bottom="1dp">
        <shape android:shape="rectangle">
            <solid android:color="#fff"></solid>
        </shape>
    </item>

</layer-list>

1 个答案:

答案 0 :(得分:3)

问题是为什么Toolbar左侧有空格。它的工具栏contentInsetStart默认为16dp,您可以将0设置为删除它:

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_top"
    android:background="@drawable/background_toolbar_top"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    app:contentInsetLeft="0dp"
    app:contentInsetStart="0dp">

    <EditText
        android:id="@+id/buscador"
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:textSize="10dp"
        android:textColor="#666"
        android:background="#ccc"
        android:textColorHint="#cccc"
        android:hint="Buscar"/>

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

您可以查看this,了解marginLeftToolbar的更多信息。