美文网首页
Android Recyclerview 在 Scrollvie

Android Recyclerview 在 Scrollvie

作者: 闫鹏飞写字的地方 | 来源:发表于2017-07-15 09:27 被阅读79次

    这个方法确实解决问题了,重写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>
    ```

    相关文章

      网友评论

          本文标题:Android Recyclerview 在 Scrollvie

          本文链接:https://www.haomeiwen.com/subject/creahxtx.html