Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 PreferenceActivity,它有按钮在更改后确认此首选项。但是当我按下返回或主页按钮时,这个偏好也会被保存。我怎样才能改变这种行为?
您可以重写onPause()以取消保存操作。您应该了解有关 Activity android 以正确的方法做正确的事情的生命周期
onPause()
覆盖 onStop 方法,并显示对话框,在没有确认的情况下,将首选项字段重置为初始值,并完成活动。