我有一个安卓工具栏,在工具栏中我有一个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>
答案 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,了解marginLeft
中Toolbar
的更多信息。