Recyclerview Changing Items During Scroll

前端 未结 15 712
我在风中等你
我在风中等你 2020-11-27 10:38

I have a RecyclerView. Each row has a play button, textview and Progressbar. when click on the play button have to play audio from my sdcard and have to progress Progressbar

15条回答
  •  抹茶落季
    2020-11-27 11:10

    If your recyclerview ViewHolder has more logic or has a different different view then you should try:

     **order_recyclerView.setItemViewCacheSize(x);**
    

    where x is the size of the list. The above works for me, I hope it works for you too.

提交回复
热议问题