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文档:
退货 一个 Cursor 对象,位于第一个条目之前。请注意,游标是不同步的,有关更多详细信息,请参阅文档。
退货
一个 Cursor 对象,位于第一个条目之前。请注意,游标是不同步的,有关更多详细信息,请参阅文档。
如果我的表有零记录怎么办?
它是否返回null。还是返回一个空的光标?
空光标。您可以使用它getCount()来确认是否Cursor为空或检查是否moveToFirst()返回 false(即,它无法移动到第一行)。
getCount()
Cursor
moveToFirst()