从添加的行中检索ID时遇到了一些问题。
我insertWithConflict
内的ContentProvider
会返回新添加的行的ID,但我不知道如何从我的ContentProvider
到负责触发插入的IntentService
。< / p>
CODE
插入IntentService
Uri uri = Uri.parse(MicroDatabaseProvider.CONTENT_URI + "/" + MicroDatabaseProvider.ORGANIZER_SEARCH_IN);
getContentResolver().insert(uri, cv);
插入ContetnProvider
long idLong = sqlDB.insertWithOnConflict(DbHelperMicro.ORGANIZER_SEARCH_TABLE,
null,
values,
SQLiteDatabase.CONFLICT_IGNORE);
getContext().getContentResolver().notifyChange(Uri.parse(CONTENT_URI + "/" + ORGANIZER_SEARCH_QUE), null);
答案 0 :(得分:9)
insert
中的ContentProvider
功能应返回Uri
值,如下所示:
public Uri insert(Uri uri, ContentValues values) {
//...
return Uri.parse(base_uri+ "/" + id); //where base uri is the base uri from your table
}
如果它像我向您展示的那样,您可以从该URI中检索ID。
在IntentService
Uri result = getContentResolver().insert(uri, cv);
long id = Long.parseLong(uri.getLastPathSegment());