android studio radiobutton和radiogroup
时间: 2023-12-11 10:33:24 浏览: 103
在Android Studio中,RadioButton和RadioGroup是常用的单选控件。RadioButton用于单个选项,而RadioGroup用于将多个RadioButton组合在一起,以便用户可以从中选择一个选项。
以下是一个使用RadioGroup和RadioButton的示例:
1. 在XML布局文件中添加RadioGroup和RadioButton:
```xml
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<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>
```
2. 在Java代码中获取RadioGroup和RadioButton,并设置选中的选项:
```java
RadioGroup radioGroup = findViewById(R.id.radioGroup);
RadioButton radioButton1 = findViewById(R.id.radioButton1);
RadioButton radioButton2 = findViewById(R.id.radioButton2);
RadioButton radioButton3 = findViewById(R.id.radioButton3);
// 设置默认选中的选项
radioButton1.setChecked(true);
// 监听选项变化
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;
}
}
});
```
阅读全文