我正在尝试实现折叠式工具栏。
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp">
<android.support.v7.widget.Toolbar
android:id="@+id/htab_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_gravity="top"
android:layout_marginBottom="48dp"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
<RelativeLayout
android:id="@+id/parralaxMain"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/.."
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/.."
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"/>
<ImageView
android:id="@+id/.."
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_centerHorizontal="true"
android:background="@drawable/.."
android:layout_marginBottom="5dp"
android:layout_below="@+id/.."
app:layout_collapseMode="parallax"/>
<TextView
android:id="@+id/.."
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@+id/.."
android:layout_marginBottom="5dp"
style="@style/.."
android:textColor="@android:color/white"
app:layout_collapseMode="parallax"/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/.."
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_marginTop="0dp"
android:layout_marginStart="0dp"
android:layout_marginEnd="0dp">
<TextView
android:id="@+id/.."
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_margin="5dp"
style="@style/.."
android:textColor="@android:color/white"/>
</RelativeLayout>
</android.support.design.widget.CollapsingToolbarLayout>
要折叠内容,我添加了app:layout_collapseMode="parallax"
,它可以完美折叠项目,但是每当我多次使用此属性时,只有具有该属性的最后一个视图实际上会折叠,而其他所有视图都不会折叠。有没有一种方法可以将此属性设置为多个视图并使其实现? 如何?