我正在使用Collapsing-toolbar中的一個Activity.I想要在其中顯示一個列表,我使用的是RecyclerView。這個工作正常。但現在我想在Recyclerview下面顯示一個按鈕。當我在一些地方顯示一個按鈕時,我們只能將一個可滾動元素放在collpasing-toolbar佈局中。我已經有一個Recyclerview,我怎麼能把一個按鈕放在下面?我知道我可以放多個視圖,如果我使用nestedScrollview但它不適用於Recyclerview。如何在材質設計中放置多個視圖摺疊 - 工具欄佈局
我試過
我嘗試使用嵌套滾動視圖同時顯示recyclerview和按鈕,但recyclerview不是嵌套scrollview.Following內工作是我的佈局XML代碼。
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<com.andy.app.util.ui.SquareImageView
android:id="@+id/Icon"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"
app:layout_collapseParallaxMultiplier="0.7" />
<View
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/groupIcon"
android:background="@drawable/coll_toolbar_image_gradient" />
</RelativeLayout>
<android.support.v7.widget.Toolbar
android:id="@+id/anim_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/List"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/transparent_white"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<Button
android:layout_width="fill_parent"
android:layout_height="60dp" />
</android.support.design.widget.CoordinatorLayout>