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.
我正在查看制作Custom CursorLoader的答案,并且想知道如果数据发生更改,是否会有数据更改通知以便列表更新?
我正在使用兼容性库加载器框架。当内容发生变化时,我只是调用它并且所有内容都会更新:
getSupportLoaderManager().getLoader(YOUR_LOADER).onContentChanged();
您可以调用notifyDataSetChanged您的适配器,以便 ListView 将显示更新的光标内容。
notifyDataSetChanged
从文档中:
通知附加的观察者底层数据已更改,任何反映数据集的视图都应自行刷新。