RecyclerView作为整理工具栏

时间:2019-03-22 15:05:31

标签: android android-recyclerview toolbar android-collapsingtoolbarlayout

我的linearLayout管理器中有一个recyclerView和framgeLayout。 FrameLayout是一些片段的容器,里面有recyclerView(可滚动)。当我将在fragment_layout中滚动并仅显示列表的最后一个元素时,我想使此recyclerview崩溃。该怎么做?

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

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="2dp" />

    <FrameLayout
        android:id="@+id/fragment_layout"
        android:layout_width="wrap_content"
        android:layout_height="match_parent" />
</LinearLayout>

0 个答案:

没有答案