ScrollView 中如果直接套用 RecyclerView 的话,会导致 RecyclerView 显示不全。
RecyclerView 的关键设置为:
android:nestedScrollingEnabled="false"
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:nestedScrollingEnabled="false"
android:layout_height="match_parent" />
</LinearLayout>
</androidx.core.widget.NestedScrollView>
网友评论