android studio实现单选框
时间: 2023-09-17 17:06:37 浏览: 126
要实现单选框,需要使用RadioGroup和RadioButton两个控件。
1. 在布局文件中添加RadioGroup和RadioButton控件:
```
<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="match_parent"
android:layout_height="wrap_content"
android:text="选项1"/>
<RadioButton
android:id="@+id/radioButton2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="选项2"/>
<RadioButton
android:id="@+id/radioButton3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="选项3"/>
</RadioGroup>
```
2. 在Java代码中获取RadioGroup控件,并添加单选框的选中监听器:
```
RadioGroup radioGroup = findViewById(R.id.radioGroup);
radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup radioGroup, int checkedId) {
// 根据选中的单选框ID执行相应的操作
switch (checkedId) {
case R.id.radioButton1:
// 选中了选项1
break;
case R.id.radioButton2:
// 选中了选项2
break;
case R.id.radioButton3:
// 选中了选项3
break;
}
}
});
```
注意,单选框的ID需要与代码中的ID相对应,才能正确地执行相应的操作。
阅读全文