Nested scroll View not scrolling smoothly with recyclerview android

前端 未结 3 1601
走了就别回头了
走了就别回头了 2020-12-16 02:19

I am using Nested Scrollview to wrap the recyclerview and other button. It worked perfectly but I noticed that when I scrolled it not smooth. Please guide how to make scroll

3条回答
  •  心在旅途
    2020-12-16 03:12

    try below codes:

     RecyclerView recycleView = (RecyclerView) findViewById(R.id.lastest_product_list);
        recycleView.setNestedScrollingEnabled(false);
    

    You can modify your layout

    
          
             
            
        
    

    Check with link here : Recyclerview inside ScrollView not scrolling smoothly

提交回复
热议问题