Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 android 示例同步适配器示例代码将我的应用程序的联系人数据库与电话簿同步,并且我需要使用同步适配器插入后立即分配给他们的 Contact_Id 更新我的联系人数据库。
如果您使用 ContentResolver.insert 操作,则 id 嵌入在返回的 URI 中。你可以这样得到它:
Uri resultUri = ContentResolver.insert(ContactsContract.RawContacts.CONTENT_URI, contentValues); if (rawContactId != null) { String rawContactId = String.valueOf(ContentUris.parseId(resultUri); }