使用Android的RadioButton組件進行單選按鈕的選擇,可以按照以下步驟進行操作:
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<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" />
</RadioGroup>
RadioGroup radioGroup = findViewById(R.id.radioGroup);
radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
RadioButton radioButton = findViewById(checkedId);
String selectedOption = radioButton.getText().toString();
// 處理選中的選項
}
});
在onCheckedChanged()方法中,可以通過checkedId參數獲取選中的RadioButton的ID,然后再通過findViewById()方法找到選中的RadioButton,最后可以通過getText()方法獲取選中的選項文本。
以上就是使用Android的RadioButton進行單選按鈕選擇的基本步驟。