How to use RecyclerView inside NestedScrollView

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

I have this layout:

 

        
8条回答
  •  借酒劲吻你
    2021-01-19 06:10

    All you have to do is use below line in your activity class:

    ViewCompat.setNestedScrollingEnabled(recycler_view, false);
    

    its compatible for lower versions also. and if you want to give compatible to API >21 only then use;

      recycler_view.setNestedScrollingEnabled(false);
    

提交回复
热议问题