这个方法确实解决问题了,重写LinearLayoutManager、重写RecyclerView、NestedScrollView都没有解决。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants">
<android.support.v7.widget.RecyclerView
android:id="@+id/menuRv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/margin_16"
android:layout_marginRight="@dimen/margin_16">
</android.support.v7.widget.RecyclerView>
</RelativeLayout>
```
网友评论