要使用RadioGroup控件獲取選中的值,可以使用以下步驟:
<RadioGroup
android:id="@+id/radio_group"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/radio_button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="選項1" />
<RadioButton
android:id="@+id/radio_button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="選項2" />
<RadioButton
android:id="@+id/radio_button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="選項3" />
</RadioGroup>
RadioGroup radioGroup = findViewById(R.id.radio_group);
radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
// 在這里處理選中的RadioButton
RadioButton radioButton = findViewById(checkedId);
String selectedValue = radioButton.getText().toString();
// 使用選中的值
}
});
在監聽器的onCheckedChanged方法中,可以通過參數checkedId獲取選中的RadioButton的id,然后通過findViewById方法獲取選中的RadioButton實例。最后,可以通過getText方法獲取選中的值,并進行后續的處理。
注意:上述代碼中,選中的值是以字符串的形式獲取的,如果需要進行其他類型的操作,可以根據需要進行相應的轉換。