Я делаю специальный arrayAdapter для своего списка, но простая вещь, как мой супер-конструктор, портит мне жизнь!
private ArrayAdapter<ScheduleTime> timeHold;
//make proper constructor, see use ticket types
public TimeTableAdapter(Context context, int textViewResourceId,
ArrayAdapter<ScheduleTime> timesTable) {
super(context, textViewResourceId, timesTable);
this.timeHold = timesTable;
}
Я получаю сообщение об ошибке в строке super
:
super(context, textViewResourceId, timesTable);
The constructor SimpleAdapter(Context, int, ArrayAdapter<ScheduleTime>) is undefined
Что мне здесь не хватает?мой конструктор выше явно содержит все эти элементы