我正在使用SimpleCursorAdapter
的实现,它实现了SectionIndexer
。这是其中的一部分:
public class MyAlphabetizedAdapter extends SimpleCursorAdapter implements
SectionIndexer {
public ContactAlphabetizedAdapter(Context context, int layout,
Cursor cursor, String[] from, int[] to) {
mIndexer = new AlphabetIndexer(cursor, cursor.getColumnIndexOrThrow(ContactsContract.Data.DISPLAY_NAME), sAlphabet);
}
@Override
public Object getItem(int position) {
if (getItemViewType(position) == TYPE_NORMAL) {
return super
.getItem(position
- mSectionToOffset
.get(getSectionForPosition(position)) - 1);
}
return null;
}
}
在getView(position)里面我需要从该位置的游标访问数据。我该怎么做?
UPD
我正在使用this 教程。
答案 0 :(得分:8)
试试这个:
@Override
public View getView(int position, View convertView, ViewGroup parent)
{
...
Cursor cursor = (Cursor) getItem(position);
}