Recyclerview Changing Items During Scroll

前端 未结 15 709
我在风中等你
我在风中等你 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:03

    Add setHasStableIds(true); in your adapter constructor and Override these two methods in adapter. It also worked if anyone using a RecyclerView inside a ViewPager which is also inside a NestedScrollView.

    @Override
    public long getItemId(int position) {
                return position;
    }
    
    @Override
    public int getItemViewType(int position) {
           return position;
    }
    

提交回复
热议问题