我正在尝试使用分页库在 RecyclerView 中显示具有搜索功能的联系人。https://github.com/anujmiddha/paged-list-demo我关注这个 GitHub 项目。以下是我项目中的代码片段。我正在尝试使用 pagedList 适配器逐渐获取联系人。但是这个 LIMIT 和 OFFSET 在某些 Android 版本(例如 Android 9.0)中无法正常工作。有没有其他选择?
private val PROJECTION = arrayOf(
ContactsContract.Contacts.DISPLAY_NAME,
ContactsContract.CommonDataKinds.Phone.NUMBER
)
val cursor = contentResolver.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
PROJECTION,
null,
null,
ContactsContract.Contacts.DISPLAY_NAME +
" ASC LIMIT " + limit + " OFFSET " + offset)
另外,我尝试了另一种方法,如下所示。
val queryArgs = Bundle()
val cursor: Cursor?
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
queryArgs.putInt(ContentResolver.QUERY_ARG_OFFSET, offset)
queryArgs.putInt(ContentResolver.QUERY_ARG_LIMIT, limit)
cursor = contentResolver.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
PROJECTION,
queryArgs,
null)
} else {
cursor = contentResolver.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
PROJECTION,
null,
null,
ContactsContract.Contacts.DISPLAY_NAME +
" ASC LIMIT " + limit + " OFFSET " + offset)
}
但没有什么对我有用..