解决方案:在RecyclerView 外面套上一层RelativeLayout即可.
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
android:scrollbars="none">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!--外面必须加上RelativeLayout 否则wrap_content无效-->
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_exception"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"/>
</RelativeLayout>
</ScrollView>
还有网上说了一大堆解决方案,全都尝试了一下没有用,还是这个好用!







网友评论