如何刷新活动
我有一个 Android 应用程序,可以提取存储在 SD 卡中的视频列表并播放它们。
当我单击播放按钮时,一个单独的活动以 VideoView 启动,我需要刷新调用 VideoView 活动的主活动来播放视频。我需要的是,当视频结束或用户单击后退按钮时,我希望刷新 Activity。任何建议将不胜感激。
I have an android application that pulls a list of videos stored in an sd-card and plays them.
When I click on the play button, a separate activity starts with VideoView, and I need to refresh the main activity that called the VideoView activity to play the video. What I need is that when the video is finished or the user clicks the back button, I want the activity to be refreshed. Any advice would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
重写 onResume() 并在那里更新您的活动。如何更新它取决于它是什么类型的活动以及需要更新的内容。例如,如果您在 ListActivity 中使用 ArrayAdapter,则可以在更新数据后调用
getListAdapter().notifyDataSetChanged()
。Override onResume() and update your activity there. How you update it depends on what kind of activity it is and what needs updating. If you're using an ArrayAdapter in a ListActivity, for instance, you can call
getListAdapter().notifyDataSetChanged()
after updating the data.我将其发布在另一个链接上,尝试以下操作:
或
注意:这也适用于 Activity 对象或使用 getActivity() 从 Fragments 中使用
I posted this on another link, try this:
OR
Note: this also works with Activity objects or from Fragments using getActivity()
实现 onResume() 请参阅文档
Implement onResume() see docs
这对你有用吗?
Will this work for you?