左侧,工具栏和LinearLayout之间的原因不明的间隙/填充

时间:2015-04-04 13:32:57

标签: android android-layout layout imageview android-linearlayout

我的Android工作室项目的布局文件中有以下结构,我在父元素(工具栏)和它的直接子元素(LinearLayout)之间看到无法解释的左边填充。

布局文字

<Toolbar
    android:layout_width="fill_parent"
    android:layout_height="600dp"
    android:id="@+id/toolbar"
    android:background="#313B45"
    android:weightSum="1">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" android:orientation="vertical">
        <ImageView
            android:id="@+id/headerimage"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:scaleType="fitXY"
            android:layout_gravity="left|top"
            android:layout_weight="1"/>

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:text="New Text"
            android:id="@+id/textView"
            android:scaleType="fitXY"
            android:layout_gravity="left|top"
            android:layout_weight="1"/>

    </LinearLayout>
</Toolbar>

如何删除此间隙并让子LinearLayout与父工具栏完全对齐?

2 个答案:

答案 0 :(得分:37)

将这些行添加到工具栏布局中:  对于API&lt; = 21 toolbar:

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

对于API 21&gt; = toolbar:

    android:contentInsetLeft="0dp"
    android:contentInsetStart="0dp"

左侧插图是由工具栏的contentInsetStart引起的,默认情况下为16dp。

这是完整的代码:

<android.support.v7.widget.Toolbar
android:layout_width="fill_parent"
android:layout_height="600dp"
android:id="@+id/toolbar"
android:background="#313B45"
android:weightSum="1"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ImageView
        android:id="@+id/headerimage"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:scaleType="fitXY"
        android:layout_gravity="left|top"
        android:layout_weight="1" />

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:text="New Text"
        android:id="@+id/textView"
        android:scaleType="fitXY"
        android:layout_gravity="left|top"
        android:layout_weight="1" />

</LinearLayout>

答案 1 :(得分:1)

以上答案仅帮助解决了一部分,添加这些行并且应该可以正常工作

android.support.v7.widget.Toolbar
        xmlns:app="schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/primaryColor"
        android:contentInsetLeft="0dp"
        android:contentInsetStart="0dp"
        app:contentInsetLeft="0dp"
        app:contentInsetStart="0dp"
        android:contentInsetRight="0dp"
        android:contentInsetEnd="0dp"
        app:contentInsetRight="0dp"
        app:contentInsetEnd="0dp" />

请注意 android:contentInsetLeft app:contentInsetLeft 是两个不同的东西,都需要