問(wèn)題重現(xiàn):
當(dāng)一個(gè)頁(yè)面中布局多個(gè)屬性為 android:layout_height="wrap_content"的RecyclerView 時(shí)断部,頁(yè)面在某些版本下無(wú)法上下滑動(dòng);
解決辦法:
在每個(gè)RecyclerView外層嵌套一個(gè)RelativeLayout搁吓,并設(shè)置descendantFocusability屬性。代碼如下
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:background="#ffffff"
android:nestedScrollingEnabled="false">
</android.support.v7.widget.RecyclerView>
</RelativeLayout>