日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 综合教程 >内容正文

综合教程

查询系统所有联系人信息

發(fā)布時間:2024/5/24 综合教程 32 生活家
生活随笔 收集整理的這篇文章主要介紹了 查询系统所有联系人信息 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

public class ContactInfoProvider {

/**
* 返回系統(tǒng)所有的聯(lián)系人信息
* @param context
* @return
*/
public static List<ContactInfo> getContactInfos(Context context) {
// 1.查詢raw_contact表獲取聯(lián)系人的id
ContentResolver resolver = context.getContentResolver();
// 獲取raw_contact表對應的uri
Uri uri = Uri.parse("content://com.android.contacts/raw_contacts");
Uri dataUri = Uri.parse("content://com.android.contacts/data");

Cursor cursor = resolver.query(uri, null, null, null, null);
List<ContactInfo> infos = new ArrayList<ContactInfo>();
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
while (cursor.moveToNext()) {
String id = cursor.getString(cursor.getColumnIndex("contact_id"));
if (id != null) {
Cursor dataCursor = resolver.query(dataUri, null,
"raw_contact_id=?", new String[] { id }, null);
ContactInfo info = new ContactInfo();
// String[] names = dataCursor.getColumnNames();
while (dataCursor.moveToNext()) {

String data1 = dataCursor.getString(dataCursor
.getColumnIndex("data1"));
String mimetype = dataCursor.getString(dataCursor
.getColumnIndex("mimetype"));
if(mimetype.contains("phone")){
info.setPhone(data1);
}else if(mimetype.contains("name")){
info.setName(data1);
}
}
infos.add(info);
dataCursor.close();
}
}
cursor.close();

return infos;
}
}

public class ContactInfo {
private String name;
private String phone;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}

}

總結

以上是生活随笔為你收集整理的查询系统所有联系人信息的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。