片段内部的RecyclerView无法在Android API 22中滚动

时间:2019-07-28 12:01:13

标签: java android android-recyclerview

我在Fragment内的ScrollView中创建了一个RecyclerView,以显示多个通知。在Android API 28上,它运行良好,但在API 22上,它没有滚动,除非我关闭片段并再次打开它,然后它在新位置显示RecyclerView(就像我滚动了一样,当片段处于显示)。

我尝试过:

1-将ScrollView更改为NestedScrollView

2-完全删除ScrollView并仅与RecyclerView一起使用

3-删除RecyclerView元素的onClickListeners

这是片段的代码

<?xml version="1.0" encoding="utf-8"?>
    <android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
     >

       <ScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:padding="20dp">

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

            <android.support.v7.widget.RecyclerView
                android:id="@+id/my_recycler_view_fragment"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="15dp"
               />

        </LinearLayout>
        </ScrollView>
    </android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:0)

原来问题出在我使用该片段的另一个文件中,那里有一个AppBarLayout,由于某种原因,它阻止了旧API的滚动。 删除了AppBarLayout并正常工作。

编辑:我找到了一个更好的解决方案,不需要删除AppBarLayout 我没有使用通常隐藏和隐藏片段的方法,而是使用setVisibility(GONE / VISIVILE),并且它也以某种方式起作用。