如何遍历所有 Contentresolver 条目?

How to iterate through all Contentresolver entries?

我的应用程序中有一个数据库,我在其中填充了数据和 ID。 然后我用我想要的 ID 请求数据库:

Cursor cursor = contentResolver.query(uriPath, null, "ID = ?", new String[]{id1, id2, etc.}, null);

这为我检索了一个包含所有请求 ID 的游标。

如何检索我的 UriPath 中的所有对象?

只需输入Uri,其余的保留null

Cursor cursor = contentResolver.query(uriPath, null, null, null, null);