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.
使用类的insert()方法时SQLiteCursorLoader,有没有办法获取作为插入结果返回的行 ID?
insert()
SQLiteCursorLoader
目前没有。我希望有一天通过回调添加这种支持。现在,您可以做的是 subclassSQLiteCursorLoader和 override insert(),提供您自己的克隆InsertTask,保留行 ID 并使用它做一些事情,也许来自onPostExecute().
InsertTask
onPostExecute()