如何获取Android中联系人的所有详细信息

前端之家收集整理的这篇文章主要介绍了如何获取Android中联系人的所有详细信息前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
给定联系人ID,我可以通过对每个字段进行不同的查询获取各种联系人详细信息(如姓名,电话,电子邮件ID等).

但有没有一种方法可以通过单个查询获取与此联系人ID相关的所有详细信息?

解决方法

不得不改变 Content Providers上的一些教程,因为它引用了弃用的类,这可能会有所帮助.
import android.provider.ContactsContract.Contacts;
import android.database.Cursor;

// Form an array specifying which columns to return,you can add more.
String[] projection = new String[] {
                         ContactsContract.Contacts.DISPLAY_NAME,ContactsContract.CommonDataKinds.Phone
                         ContactsContract.CommonDataKinds.Email
                      };

Uri contacts =  ContactsContract.Contacts.CONTENT_LOOKUP_URI;
// id of the Contact to return.
long id = 3;

// Make the query. 
Cursor managedCursor = managedQuery(contacts,projection,// Which columns to return 
                     null,// Which rows to return (all rows)
                                 // Selection arguments (with a given ID)
                     ContactsContract.Contacts._ID = "id",// Put the results in ascending order by name
                     ContactsContract.Contacts.DISPLAY_NAME + " ASC");
原文链接:https://www.f2er.com/android/315583.html

猜你在找的Android相关文章