0
我在BaseAdapter中初始化TextView,現在我想在My Activity中使用初始化的TextView。我從構造函數傳遞TextView,但沒有運氣。請幫幫我。我的代碼在這裏如何在已爲BaseAdapter初始化的MainActivity中使用TextView?
@Override
public View getView(final int position, View convertView, ViewGroup arg2) {
contactListItems = contactList.get(position);
if (convertView == null) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.attendance_student_data, null);
}
TextView presentView = (TextView) convertView.findViewById(R.id.presentView);
}
This presentView我想在我的MainActivity中使用。引導我。
哪裏是主要活動和底座適配器代碼中使用此。需要更多信息\ –
爲什麼你需要在你的活動中使用這個'TextView',爲什麼不在你的適配器中使用它。 – linhtruong
在列表中,您想使用哪個'TextView'? –