android 列表视图刷新

发布于 2024-11-04 00:01:36 字数 67 浏览 2 评论 0原文

大家好
我想在添加或删除任何数据后刷新我的列表视图。适配器来自 SD 卡,我该怎么做?

提前致谢

hello every one
i want to refresh my listview after adding or removing any data.. the adapter is from the SDcard how can i do this?

thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜司空 2024-11-11 00:01:36

在您的数据之后调用此代码
改变..

adapter.notifyDataSetChanged();

call this code after your data are
change..

adapter.notifyDataSetChanged();
九公里浅绿 2024-11-11 00:01:36

使用ArrayAdapter的notifyDataSetChanged()
请参阅以下代码:

((EfficientAdapter)listView1.getAdapter()).notifyDataSetChanged();

希望这对您有所帮助。

Use notifyDataSetChanged() of ArrayAdapter.
See the following code:

((EfficientAdapter)listView1.getAdapter()).notifyDataSetChanged();

Hope this will help you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文