Android中的RadioGroup控件用于實現單選功能,即只能選擇其中的一個選項。下面是使用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" />
</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;
}
}
});
在監聽器的onCheckedChanged
方法中,可以根據選中的RadioButton的id進行不同的邏輯處理。
注意事項:
android:id="@+id/xxx"
。android:checked="true"
屬性,或在代碼中調用radioButton.setChecked(true)
方法。