刷新活动问题

发布于 2024-11-18 15:30:35 字数 182 浏览 1 评论 0原文

我有一个应用程序,其中包含带有播放按钮的视频文件列表。当用户单击播放按钮时,会通过播放视频的 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 技术交流群。

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

发布评论

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

评论(2

策马西风 2024-11-25 15:30:35

将“刷新”代码放入 Main-Activity 的 onStart 方法中。

请参阅 Android Activity 生命周期

Put your "refresh"-code in the Main-Activity's onStart-method.

See Androids Activity Lifecycle.

紧拥背影 2024-11-25 15:30:35

您可以使用 startActivityForResult(Intent, int) ,然后处理不同的结果。

You could use startActivityForResult(Intent, int) and then handle the different results.

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