单击手机后退按钮时重置活动

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

当用户单击上一页的后退按钮时,是否可以将活动重置为正常状态。

用例:在我的主要活动中,我有复选框,用户使用意图转到下一个活动。该活动有一个“返回主页”按钮,但是当用户只需单击手机上的后退按钮时,从用户上次访问该页面时起,复选框就已被选中。

Is it possible to reset a activity to its normal state when a user clicks the back button from the previous page.

Use Case: On my main activity I have checkboxes and the user goes to the next activity using intent. That activity has a "Back to Main Page" button, but when the user just clicks the back button on the phone the checkboxes are already checked from the last time the user was on the page.

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

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

发布评论

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

评论(2

仅冇旳回忆 2024-12-07 18:30:35

如果您只想在从该 Activity 返回时重置,请使用 startActivityForResult() 并覆盖 onActivityResult

如果您想每次都重置,请在 onResume() 中重置

If you want to reset only when returning from that activity then use startActivityForResult() and override onActivityResult.

If you want to reset everytime then reset in onResume()

讽刺将军 2024-12-07 18:30:35

将设置复选框默认状态的代码从 onCreate() 移至 onResume() 方法。

Move the code that sets the default state of the checkboxes from the onCreate() to onResume() method.

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