Recyclerview Changing Items During Scroll

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

    Please try this

    1. If you are using ListView - override the following methods.

       @Override
       public int getViewTypeCount() {    
           return getCount();
       }
      
       @Override
       public int getItemViewType(int position) {    
           return position;
       }
      
    2. If you are using RecyclerView - override only getItemViewType() method.

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

提交回复
热议问题