安卓radiobutton
时间: 2023-08-23 19:17:13 浏览: 74
android RadioButton
安卓的RadioButton是一种单选框控件,它会显示一个圆圈和一个文本标签,用户可以选择其中一个选项。以下是创建一个RadioButton的步骤:
1. 在布局文件中添加一个RadioButton控件:
```
<RadioButton
android:id="@+id/radio_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="选项1"/>
```
2. 在代码中获取RadioButton控件的引用并设置它的监听器:
```
RadioButton radioButton = findViewById(R.id.radio_button);
radioButton.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
// 当RadioButton被选中时执行的代码
}
}
});
```
这样,当用户点击RadioButton时,它会调用onCheckedChanged()方法,并将isChecked参数设置为true,你就可以执行相应的逻辑代码了。
阅读全文