Android - 刷新/重新启动以前的活动

发布于 2024-10-12 14:36:55 字数 49 浏览 6 评论 0原文

当用户从活动返回到我的程序的主菜单时,您使用什么类;刷新/重新启动主菜单(更新它)?

When a user returns from an activity to the main menu of my program, what class do you use to for example; refresh/restart the main menu (update it)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

风吹雪碎 2024-10-19 14:36:55

这取决于...如果您启动了第二个活动并想要更新第一个活动,您应该:

  • 使用 startActivityForResult 方法启动第二个活动
  • 将“刷新代码”放入 onActivityResult code> 您的第一个活动的方法。

如果情况并非如此,您可以尝试将刷新代码放在 onResume 中。

It depends... if you started the second activity and want to update the first, you should:

  • Use startActivityForResult method to start the second activity
  • Place the "refresh code" in the onActivityResult method of your first activity.

If that's not the scenario, you can try to place the refresh code in onResume.

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