阅读量:2
在 Android 中,可以通过以下方式获取单选框的值:
首先,在布局文件中定义一个单选框组(RadioGroup)和若干个单选框(RadioButton),并为每个单选框设置一个唯一的 id。
在 Activity 中,通过 findViewById 方法获取 RadioGroup 对象,并设置一个 OnCheckedChangeListener 监听器来监听单选框的选择变化。
在 OnCheckedChangeListener 的回调方法中,可以通过 getCheckedRadioButtonId 方法获取选中的单选框的 id。
最后,可以通过 findViewById 方法结合选中的单选框的 id 获取到对应的 RadioButton 对象,并通过 getText 方法获取其显示的文本值。
示例代码如下:
在布局文件中定义单选框组和单选框:
<RadioGroup android:id="@+id/radioGroup" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <RadioButton android:id="@+id/radioButton1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Option 1" /> <RadioButton android:id="@+id/radioButton2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Option 2" /> <RadioButton android:id="@+id/radioButton3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Option 3" /> </RadioGroup>
在 Activity 中获取单选框的值:
RadioGroup radioGroup = findViewById(R.id.radioGroup); radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() { @Override public void onCheckedChanged(RadioGroup group, int checkedId) { RadioButton radioButton = findViewById(checkedId); String selectedValue = radioButton.getText().toString(); // 处理选中的值 } });