How to retrieve data from cursor class

后端 未结 3 483
借酒劲吻你
借酒劲吻你 2020-11-28 10:12

I need to know how to retrieve data from cursor. I need this because the ringtonemanager returns all the audio files in form of cursor object, I need to know how to retrieve

3条回答
  •  遥遥无期
    2020-11-28 10:57

    This looks a bit better:

    for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
        ...
    }
    

提交回复
热议问题