刷新活动问题
我有一个应用程序,其中包含带有播放按钮的视频文件列表。当用户单击播放按钮时,会通过播放视频的 Intent 启动一个单独的活动。我想要的是,当我在视频文件结束时单击后退按钮时,我希望刷新 mainActivity (mainActivity 是启动播放视频文件的 Activity 的 Activity)。
请问有什么有用的建议吗??
I have an application with a list of video files with play button. When the user clicks play button, a separate activity starts through intent where the video is played. What I want is that when I click the back button when the video file finishes, I want the mainActivity to be refreshed (the mainActivity is the activity that started the activity for playing video file).
Any useful suggestions please??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将“刷新”代码放入 Main-Activity 的
onStart
方法中。请参阅 Android Activity 生命周期。
Put your "refresh"-code in the Main-Activity's
onStart
-method.See Androids Activity Lifecycle.
您可以使用 startActivityForResult(Intent, int) ,然后处理不同的结果。
You could use
startActivityForResult(Intent, int)
and then handle the different results.