我有以下无线电组:
<RadioGroup
android:id="@+id/radioGroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<RadioButton
android:id="@+id/rd_male"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="Male" />
<RadioButton
android:id="@+id/rd_female"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Female" />
</RadioGroup>
我想在这个单选组中获取选定的值,因此我在 onCreate 方法中编写了以下代码:
int checkedRadioButton = rgGender.getCheckedRadioButtonId();
switch (checkedRadioButton) {
case R.id.rd_male : gender = "Female";
break;
case R.id.rd_female : gender = "Male";
break;
}
但是每次我发现变量性别的值只是“女性”(虽然我选择了男性)
这段代码有什么问题?请帮我。