单击手机后退按钮时重置活动
当用户单击上一页的后退按钮时,是否可以将活动重置为正常状态。
用例:在我的主要活动中,我有复选框,用户使用意图转到下一个活动。该活动有一个“返回主页”按钮,但是当用户只需单击手机上的后退按钮时,从用户上次访问该页面时起,复选框就已被选中。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只想在从该 Activity 返回时重置,请使用
startActivityForResult()
并覆盖onActivityResult
。如果您想每次都重置,请在
onResume()
中重置If you want to reset only when returning from that activity then use
startActivityForResult()
and overrideonActivityResult
.If you want to reset everytime then reset in
onResume()
将设置复选框默认状态的代码从
onCreate()
移至onResume()
方法。Move the code that sets the default state of the checkboxes from the
onCreate()
toonResume()
method.