How to use RecyclerView inside NestedScrollView

后端 未结 8 858
梦如初夏
梦如初夏 2021-01-19 05:47

I have this layout:

 

        
8条回答
  •  再見小時候
    2021-01-19 06:03

    just enable nestedscrolling that will enable smooth scrollview.

    RecyclerView v = (RecyclerView) findViewById(...);
    v.setNestedScrollingEnabled(false);
    

提交回复
热议问题