Recyclerview Changing Items During Scroll

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;
     }
    

Leave a Comment