【发布时间】:2016-04-16 06:45:42
【问题描述】:
我正在开发一个需要获取联系人列表的应用程序。获得所有联系需要时间。所以我想在本地存储联系人列表。但是当新联系人添加到手机中时,我需要更新。如何通知我的应用新联系人已添加到设备中? 我使用此代码从设备获取联系:`
public void getContact()
{
ContentResolver cr = getContentResolver();
Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI,
null, null, null, null);
Log.e("curcouuntLOL",cur.getCount()+"");
if (cur.getCount() > 0) {
while (cur.moveToNext()) {
String id = cur.getString(
cur.getColumnIndex(ContactsContract.Contacts._ID));
String name = cur.getString(cur.getColumnIndex(
ContactsContract.Contacts.DISPLAY_NAME));
String photoUri = cur.getString(cur.getColumnIndex(ContactsContract.Contacts.PHOTO_THUMBNAIL_URI));
if (Integer.parseInt(cur.getString(cur.getColumnIndex(
ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {
modelPhone=new ModelPhone();
Cursor pCur = cr.query(
ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
null,
ContactsContract.CommonDataKinds.Phone.CONTACT_ID +" = ?",
new String[]{id}, null);
while (pCur.moveToNext()) {
String phoneNo = pCur.getString(pCur.getColumnIndex(
ContactsContract.CommonDataKinds.Phone.NUMBER));
Toast.makeText(PhoneNumberlistActivity.this, "Name: " + name
+ ", Phone No: " + phoneNo +" ,photoUri :" + photoUri, Toast.LENGTH_SHORT).show();
}
pCur.close();
}
}
}
}`
【问题讨论】:
-
见
ContentResolver#registerContentObserver -
感谢@pskink 的回复,请问如何使用或有链接吗?
-
“如何工作”什么?
-
任何链接或任何东西,我可以得到有关此的详细信息?它适用于所有 android 版本吗?
-
见this