gpt4 book ai didi

java - RadioGroup 上的 getCheckedRadioButtonId() 未经检查的值未使用数据绑定(bind) android 给出正确的值

转载 作者:行者123 更新时间:2023-12-01 10:01:46 26 4
gpt4 key购买 nike

我正在尝试对单选组使用验证。但我可以看到,如果没有选中单选按钮,则 getCheckedRadioButtonId() 的返回值不是 -1。我正在使用数据绑定(bind)。

单选组的xml文件。

<RadioGroup
android:id="@+id/LabRadioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkedButton="@+id/sound">

<RadioButton
android:id="@+id/radio_normal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="@{Exams.result.equals(@string/Exam_Normal)?true:false}"
android:text="Normal" />

<RadioButton
android:id="@+id/radio_abnormal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="@{Exams.result.equals(@string/Exam_Abnormal)?true:false}"
android:text="Abnormal" />

<RadioButton
android:id="@+id/radio_unknown"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="@{Exams.result.equals(@string/Exam_unknown)?true:false}"
android:text="Unknown" />

</RadioGroup>

enter image description here

这是屏幕截图中的调试值。

Java代码

private boolean Validation() {
int radiogroup = binding.LabRadioGroup.getCheckedRadioButtonId();
if (binding.LabRadioGroup.getCheckedRadioButtonId() == -1) {
binding.radioNormal.setError(CommonMessages.GROUP_RADIO_ERROR_TAG);
return false;
}
return true;
}

最佳答案

您正在 xml 中分配 checkedButton 属性:

<RadioGroup
android:id="@+id/LabRadioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checkedButton="@+id/sound"> //<--- remove this line

即使没有检查任何内容,您也可以取回此id

关于java - RadioGroup 上的 getCheckedRadioButtonId() 未经检查的值未使用数据绑定(bind) android 给出正确的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36763856/

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