我有Activity
。此活动有两个单选按钮。如果我去另一个活动或最小化应用程序,我想保持选择单选按钮(选择哪一个)。
现在我该怎么办?
如果有人能这样做,请帮助我。
答案 0 :(得分:0)
任何活动重新启动其首先执行的onResume()
方法。
如果您按照以下方式使用此方法。
@Override
public void onResume(){
super.onResume();
// put your code here...
if (your condition){
radioButton.setChecked(true); //check accrodingly which button you want to set checked
}else{
radioButton.setChecked(false);
}
}