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)
方法。