RecyclerView 的显示不全

在布局文件 RecyclerView 外层套一个 RelativeLayout

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/mini_program_list"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:layoutManager="LinearLayoutManager"
                tools:listitem="@layout/mini_program" />
        </RelativeLayout>

并且添加代码优化滑动流畅度

       recyclerView.setNestedScrollingEnabled(false);
posted @ 2020-07-31 15:06  TzzTZhj  阅读(15)  评论(0)    收藏  举报