如何刷新活动

发布于 2024-11-19 13:17:55 字数 167 浏览 3 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(4

终难愈 2024-11-26 13:17:55

重写 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.

纵山崖 2024-11-26 13:17:55

我将其发布在另一个链接上,尝试以下操作:

finish();startActivity(getIntent());

// Refresh main activity upon close of dialog box
Intent refresh =new Intent(this, ActivityWeAreIn.class);
startActivity(refresh);

注意:这也适用于 Activity 对象或使用 getActivity() 从 Fragments 中使用

I posted this on another link, try this:

finish();startActivity(getIntent());

OR

// Refresh main activity upon close of dialog box
Intent refresh =new Intent(this, ActivityWeAreIn.class);
startActivity(refresh);

Note: this also works with Activity objects or from Fragments using getActivity()

只怪假的太真实 2024-11-26 13:17:55

实现 onResume() 请参阅文档

Implement onResume() see docs

廻憶裏菂餘溫 2024-11-26 13:17:55

这对你有用吗?

public void onResume(Bundle s) {
       this.onCreate(s);
}

Will this work for you?

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