使用Android基礎控件RadioGroup的步驟如下:
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="wrap_content"
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>
RadioGroup radioGroup = findViewById(R.id.radioGroup);
radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
// 處理選擇項變化的邏輯
switch (checkedId) {
case R.id.radioButton1:
// 選中了Option 1
break;
case R.id.radioButton2:
// 選中了Option 2
break;
case R.id.radioButton3:
// 選中了Option 3
break;
}
}
});
在監聽器的onCheckedChanged()
方法中,可以根據選中的RadioButton的id執行相應的邏輯處理。
注意:RadioGroup中的RadioButton的id必須是唯一的,可以通過android:id
屬性進行設置。