Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用光标和简单的光标适配器在列表视图中获取联系人姓名和电话号码。我见过循环数据库中所有联系人的代码。有没有一种通过合并游标和使用简单的游标适配器来制作列表视图的有效方法?
您可以在此光标中获得有关联系人的所有信息
Cursor cursor = context.getContentResolver().query( ContactsContract.Contacts.CONTENT_URI, null, null, null, null);
但是要从此游标中获取名称或 ID,您必须循环遍历没有其他可能性。