Android ScrollView嵌套RecyclerView
2020-11-25 本文已影响0人
大川的川
刚刚突然发现,ScrollView嵌套RecyclerView时,本来好几条列表数据,却只显示出了第一行,让我吃惊!通过尝试,找到了问题的解决办法:在RecyclerView外层套一层RelativeLayout。对,是RelativeLayout,不要用LinearLayout,否则还是只会显示第一行,并设置android:nestedScrollingEnabled="false",这样,我们的问题就解决了!
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- 充值界面说明 -->
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recylerview_explanation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp_10"
android:layout_marginRight="@dimen/dp_10"
android:layout_marginBottom="@dimen/dp_15"
android:nestedScrollingEnabled="false" />
</RelativeLayout>