问题描述:
在Android应用程序中通过编程更新了联系人信息(例如姓名、电话号码等),但是这些更新与其他应用程序(例如联系人应用程序、电话应用程序等)不同步。这可能导致在其他应用程序中无法看到最新的联系人信息。
解决方法:
ContentResolver resolver = getContentResolver();
ContentValues values = new ContentValues();
values.put(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME, "John Doe");
values.put(ContactsContract.CommonDataKinds.Phone.NUMBER, "1234567890");
String where = ContactsContract.Data._ID + " = ?";
String[] selectionArgs = new String[]{contactId}; // 要更新的联系人的ID
resolver.update(ContactsContract.Data.CONTENT_URI, values, where, selectionArgs);
Intent intent = new Intent(Intent.ACTION_PROVIDER_CHANGED);
intent.setData(ContactsContract.Contacts.CONTENT_URI);
sendBroadcast(intent);
AccountManager accountManager = AccountManager.get(this);
Account[] accounts = accountManager.getAccountsByType("com.google");
for (Account account : accounts) {
Bundle extras = new Bundle();
extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true);
extras.putBoolean(ContentResolver.SYNC_EXTRAS_EXPEDITED, true);
ContentResolver.requestSync(account, ContactsContract.AUTHORITY, extras);
}
请注意,上述解决方法仅适用于使用ContactsContract API更新联系人信息的情况。如果您使用的是其他联系人管理库或自定义的联系人存储方式,则需要根据具体情况进行相应的修改和处理。