UI 活动刷新

发布于 2024-12-18 00:38:21 字数 81 浏览 0 评论 0原文

当用户当前仅查看该活动时,如何刷新该活动。 我需要显示在服务器中修改的修改后的列表视图项目。 我已经获得更新的数据项,但不知道如何刷新用户界面。

How can I refresh an activity when User is currently viewing that activity only.
I need to show modified listview items which are modified in server.
I am already getting updated dataitems but dun know how to refresh the UI.

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

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

发布评论

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

评论(2

巷子口的你 2024-12-25 00:38:21

每次适配器中的数据发生更改时,都会调用 yourAdapter.notifyDataSetChanged()
通知附加的观察者底层数据已更改,并且任何反映数据集的视图都应自行刷新。

call yourAdapter.notifyDataSetChanged() every time the data change in your adapter so this will
Notifies the attached observers that the underlying data has been changed and any View reflecting the data set should refresh itself.

傲影 2024-12-25 00:38:21

由于您已经更新了数据,只需以下代码

listAdapter.notifyDataSetChanged();

As you've already updated data, just the following code

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