ArrayAdapter and ListView display only specific items
问题 I am trying to impement a school planner app. There is a timetable overview implemented as a ListView for each day wrapped into a Tab Layout. So the user can switch between days Monday to Friday and gets his timetable for the specific day. public class TimetableAdapter extends ArrayAdapter<Lesson> { private List<Lesson> lessonList; // The model ... public View getView(int position, View convertView, ViewGroup parent) { View view = null; ... view = inflater.inflate(R.layout.timetable_row, null