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

sta*_*owN 18 layout android imageview android-layout 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>
Run Code Online (Sandbox Code Playgroud)

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

Nik*_*rma 37

将这些行添加到工具栏布局:对于API <= 21工具栏:

    app:contentInsetLeft="0dp"
    app:contentInsetStart="0dp"
Run Code Online (Sandbox Code Playgroud)

对于API 21> = toolbar:

    android:contentInsetLeft="0dp"
    android:contentInsetStart="0dp"
Run Code Online (Sandbox Code Playgroud)

左侧插图是由工具栏的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>
Run Code Online (Sandbox Code Playgroud)

  • 你是一个救生员! (3认同)