cwac-loaderex: How to get inserted row ID?

64 Views Asked by At

When using the insert() method of the SQLiteCursorLoader class, is there a way to get the row ID that was returned as a result of the insert?

1

There are 1 best solutions below

0
On BEST ANSWER

Not presently. I'll look to add that support someday via a callback. Right now, what you can do is subclass SQLiteCursorLoader and override insert(), supplying your own clone of InsertTask that holds onto the row ID and does something with it, perhaps from onPostExecute().