我使用以下代码为我的应用创建了一个自定义帐户:
Account account = new Account(username, accountType);
ContentResolver.setIsSyncable(account, context.getString(R.string.CONTACT_AUTHORITY), 1);
ContentResolver.setSyncAutomatically(account, context.getString(R.string.CONTACT_AUTHORITY), true);
if(accManager.addAccountExplicitly(account, password, userData)) {
Intent intent = new Intent();
intent.putExtra(AccountManager.KEY_ACCOUNT_NAME, account.name);
intent.putExtra(AccountManager.KEY_ACCOUNT_TYPE, account.type);
intent.putExtra(AccountManager.KEY_AUTHTOKEN, account.type);
context.setAccountAuthenticatorResult(intent.getExtras());
context.setResult(Activity.RESULT_OK);
return account;
} else {
// display error
}
然后我尝试使用以下内容插入新联系人:
// insert new contact
ContentValues values = new ContentValues();
values.put(ContactsContract.RawContacts.ACCOUNT_TYPE, accountType);
values.put(ContactsContract.RawContacts.ACCOUNT_NAME, accountName);
Uri rawContactUri = getContentResolver().insert(ContactsContract.RawContacts.CONTENT_URI, values);
long rawContactId = ContentUris.parseId(rawContactUri);
Log.d("ABC", "New raw contact id = " + rawContactId);
// insert new rawContact id
values.clear();
values.put(ContactsContract.Data.RAW_CONTACT_ID, rawContactId);
values.put(ContactsContract.Data.MIMETYPE, ContactsContract.CommonDataKinds.StructuredName.CONTENT_ITEM_TYPE);
values.put(ContactsContract.CommonDataKinds.StructuredName.DISPLAY_NAME, "zzzzzawesome");
getContentResolver().insert(ContactsContract.Data.CONTENT_URI, values);
我能够插入新的联系人,但问题是当我在联系人列表中查看该联系人时,它在“已连接的通过”部分中没有我的应用程序图标,而是显示了一个电话图标,知道为什么吗?
我正在使用三星S5测试btw。
答案 0 :(得分:1)
我终于解决了它,问题在于缺少SyncAdapter服务实现。在AndroidManifest.xml中添加以下内容后,问题就解决了。
<service
android:name=".authenticator.ContactsSyncAdapterService"
android:exported="true">
<intent-filter>
<action android:name="android.content.SyncAdapter" />
</intent-filter>
<meta-data
android:name="android.content.SyncAdapter"
android:resource="@xml/sync_contacts" />
</service>