ListView reusing views when … I don’t want it to

Add this two methods to your Adapter.

@Override

public int getViewTypeCount() {                 

    return getCount();
}

@Override
public int getItemViewType(int position) {

    return position;
}

Leave a Comment