CollapsibleToolbarLayout中不需要的填充

时间:2016-02-05 14:55:51

标签: android android-design-library

我的布局中有以下代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="global.sti.attendance.SignUpActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="250dp"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsibleToolbarLayout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            app:contentScrim="?attr/colorPrimary">

            <ImageView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="centerCrop"
                android:src="@mipmap/colorful_background"
                app:layout_collapseMode="parallax"
                android:adjustViewBounds="true"/>

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="?attr/colorPrimary"
                app:layout_collapseMode="pin"/>

        </android.support.design.widget.CollapsingToolbarLayout>

    </android.support.design.widget.AppBarLayout>

</android.support.design.widget.CoordinatorLayout>

滚动工作正常,但我的CollapsingToolbarLayout中有不需要的填充,这就是结果:

enter image description here

似乎有什么问题?谢谢!

PS:我已经将我的布局包装在coordinatorlayout中,我不知道为什么stackoverflow编辑器在我粘贴在这里时没有识别它。

1 个答案:

答案 0 :(得分:0)

尝试在工具栏上设置

app:contentInsetStart="0dp"