解決方案:在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>
還有網(wǎng)上說了一大堆解決方案,全都嘗試了一下沒有用,還是這個(gè)好用!