RecyclerView inside ScrollView is not working

前端 未结 26 2025
梦如初夏
梦如初夏 2020-11-22 05:37

I\'m trying to implement a layout which contains RecyclerView and ScrollView at the same layout.

Layout template:


    

        
26条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-22 06:24

    **Solution which worked for me
    Use NestedScrollView with height as wrap_content


    RecyclerView android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:nestedScrollingEnabled="false"
    app:layoutManager="android.support.v7.widget.LinearLayoutManager" tools:targetApi="lollipop"

    and view holder layout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"

    //Your row content goes here

提交回复
热议问题