ListView Custom Adapter repeat items
问题 Whats wrong with this adapter, when i scroll down i see repeated rows at the bottom and then when scroll up again i see also repeated rows at the top that were not exist before, and the rest of Data items does not appear the adapter: public class ClassesListViewAdapter extends BaseAdapter { private Context mContext; ArrayList<String> Data = new ArrayList<>(); public ClassesListViewAdapter(Context context, ArrayList<String> data) { Data = data; mContext = context; } @Override public Object