从SimpleCursorAdapter.getView()中的光标获取数据

时间:2012-03-29 16:12:18

标签: android

我正在使用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 教程。

1 个答案:

答案 0 :(得分:8)

试试这个:

@Override
public View getView(int position, View convertView, ViewGroup parent)
{
  ...
  Cursor cursor = (Cursor) getItem(position);
}