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);

浙公网安备 33010602011771号