問題重現:
當一個頁面中布局多個屬性為 android:layout_height="wrap_content"的RecyclerView 時,頁面在某些版本下無法上下滑動;
解決辦法:
在每個RecyclerView外層嵌套一個RelativeLayout,并設置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>