내 listview에 대한 사용자 정의 arrayAdapter를 작성하고 있지만 내 슈퍼 생성자와 같은 간단한 것이 나를 망쳐 놓는다!Android 사용자 정의 arrayadapter 생성자 문제
super(context, textViewResourceId, timesTable);
The constructor SimpleAdapter(Context, int, ArrayAdapter<ScheduleTime>) is undefined
내가 여기 실종 무엇 :
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
줄에 오류가? 위의 생성자는 분명히 모든 요소를 가지고 있습니다
'생성자 SimpleAdapter (Context, int, ArrayAdapter)이 정의되지 않은 경우'는 ** wrong ** 요소임을 의미합니다. * 당신에게 그 요소가 있다는 것을 알려주지 만, 단순 어댑터에는 정의되어 있지 않습니다. @ JB Nizet이 말했듯이, Simple Adapter는 서로 다른'super' 인수를 가지고 있습니다. –
Kgrover