RecyclerView inside ScrollView is not working

前端 未结 26 1522
梦如初夏
梦如初夏 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:33

    Try this. Very late answer. But surely help anyone in future.

    Set your Scrollview to NestedScrollView

    
     
    
    
    

    In your Recyclerview

    recyclerView.setNestedScrollingEnabled(false); 
    recyclerView.setHasFixedSize(false);
    

提交回复
热议问题