UI 活动刷新
当用户当前仅查看该活动时,如何刷新该活动。 我需要显示在服务器中修改的修改后的列表视图项目。 我已经获得更新的数据项,但不知道如何刷新用户界面。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
每次适配器中的数据发生更改时,都会调用
yourAdapter.notifyDataSetChanged()
通知附加的观察者底层数据已更改,并且任何反映数据集的视图都应自行刷新。
call
yourAdapter.notifyDataSetChanged()
every time the data change in your adapter so this willNotifies the attached observers that the underlying data has been changed and any View reflecting the data set should refresh itself.
由于您已经更新了数据,只需以下代码
As you've already updated data, just the following code