我已经使用Authenticator Service& amp;创建了自定义帐户。我的帐户确实已成功创建。这就是我添加联系人的方式:
ContentResolver resolver = context.getContentResolver();
ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
ops.add(ContentProviderOperation
.newInsert(addCallerIsSyncAdapterParameter(ContactsContract.RawContacts.CONTENT_URI, true))
.withValue(ContactsContract.RawContacts.ACCOUNT_NAME, context.getResources().getString(R.string.app_name))
.withValue(ContactsContract.RawContacts.ACCOUNT_TYPE, context.getResources().getString(R.string.account_type))
.withValue(ContactsContract.RawContacts.AGGREGATION_MODE, ContactsContract.RawContacts.AGGREGATION_MODE_DEFAULT)
.build());
ops.add(ContentProviderOperation
.newInsert(addCallerIsSyncAdapterParameter(ContactsContract.Data.CONTENT_URI, true))
.withValueBackReference(ContactsContract.Data.RAW_CONTACT_ID, 0)
.withValue(ContactsContract.Data.MIMETYPE, ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE)
.withValue(ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME, name)
.build());
ops.add(ContentProviderOperation
.newInsert(addCallerIsSyncAdapterParameter(ContactsContract.Data.CONTENT_URI, true))
.withValueBackReference(ContactsContract.Data.RAW_CONTACT_ID, 0)
.withValue(ContactsContract.Data.MIMETYPE, context.getResources().getString(R.string.mime_type))
.withValue(ContactsContract.Data.DATA1, context.getResources().getString(R.string.app_name))
.withValue(ContactsContract.Data.DATA2, context.getResources().getString(R.string.app_name))
.withValue(ContactsContract.Data.DATA3, context.getResources().getString(R.string.app_name))
.build());
ops.add(ContentProviderOperation.
newInsert(ContactsContract.Data.CONTENT_URI)
.withValueBackReference(ContactsContract.Data.RAW_CONTACT_ID, 0)
.withValue(ContactsContract.Data.MIMETYPE, ContactsContract.CommonDataKinds.Phone.CONTENT_ITEM_TYPE)
.withValue(ContactsContract.Contacts._ID, id)
.withValue(ContactsContract.CommonDataKinds.Phone.TYPE, ContactsContract.CommonDataKinds.Phone.TYPE_MOBILE).build()
);
Log.e(TAG, "contact added: " + name + ", " + number);
try {
resolver.applyBatch(ContactsContract.AUTHORITY, ops);
} catch (Exception e) {
e.printStackTrace();
}
手机的联系人显示:“仅限电话,未联系的联系人”。我无法弄清楚出了什么问题。
答案 0 :(得分:1)
我遇到了同样的问题。我的错误是我在xml文件中为我的同步适配器定义了错误的contentAuthority。
<sync-adapter
xmlns:android="http://schemas.android.com/apk/res/android"
android:contentAuthority="com.example.syncadapter.provider"
android:accountType="com.example.account"
android:userVisible="true"/>
虽然要求的价值是
<sync-adapter
xmlns:android="http://schemas.android.com/apk/res/android"
android:contentAuthority="com.android.contacts"
android:accountType="com.example.account"
android:userVisible="true"/>