gpt4 book ai didi

java - 取消选择复选框

转载 作者:行者123 更新时间:2023-12-01 16:28:22 25 4
gpt4 key购买 nike

我有 2 个复选框,我使用共享首选项保存它们,但是,如果选择了另一个复选框,我需要取消选择一个复选框。

我的代码:

public static CheckBox checkHolyPaiges, checkDefault;
public static boolean checkHolyPaiges2, checkDefault2;

checkDefault = (CheckBox) findViewById(R.id.checkDefault);
checkHolyPaiges = (CheckBox) findViewById(R.id.checkHolyPaiges);

final SharedPreferences prefs = getSharedPreferences("game", MODE_PRIVATE);

if (checkHolyPaiges.isChecked())
{
SharedPreferences.Editor editor = prefs.edit();
editor.putBoolean("checkHolyPaiges", true);
editor.apply();

checkDefault.setChecked(false);
}

if (checkDefault.isChecked())
{
SharedPreferences.Editor editor = prefs.edit();
editor.putBoolean("checkDefault", true);
editor.apply();

checkHolyPaiges.setChecked(false);
}

checkHolyPaiges2 = prefs.getBoolean("checkHolyPaiges", false);
checkDefault2 = prefs.getBoolean("checkDefault", true);

最佳答案

您应该在这个问题上使用单选按钮。

我认为,单选按钮比复选框更好地处理这个问题

https://developer.android.com/guide/topics/ui/controls/radiobutton

关于java - 取消选择复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62115035/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com