在Android中,RadioGroup是一個容器控件,用于管理一組RadioButton控件。在RadioGroup中只能選擇一個RadioButton,當選擇一個RadioButton時,其它RadioButton會自動取消選擇。
使用RadioGroup控件的步驟如下:
<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>
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;
}
}
});
以上代碼中,通過setOnCheckedChangeListener方法設置了RadioGroup的選擇改變監聽器,當選擇改變時,會回調onCheckedChanged方法,可以在該方法中處理選擇改變事件。
通過上述步驟,就可以使用RadioGroup控件來管理一組RadioButton控件,并處理選擇改變事件。