尝试了网上的各种方案,都以失败告终
最终发现了一个方法
在RecycleView外,嵌套一层RelativeLayout完美解决。
<RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <android.support.v7.widget.RecyclerView android:id="@+id/recycler_view_runway" android:layout_width="match_parent" android:layout_height="wrap_content" /> </RelativeLayout>