用android studio实现以下效果,当选择单选框1时,单选框上方显示【我选择的是radio1】,当选择单选框2时,单选框上方显示【我选择的是radio2】,要求写出布局文件核心代码和Activity中的按钮点击事件监听方法。
时间: 2024-02-26 08:59:06 浏览: 114
浅谈监听单选框radio改变事件(和layui中单选按钮改变事件)
5星 · 资源好评率100%
以下是布局文件的核心代码:
```
<RadioGroup
android:id="@+id/radio_group"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/radio1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Radio 1" />
<RadioButton
android:id="@+id/radio2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Radio 2" />
</RadioGroup>
<TextView
android:id="@+id/result_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAlignment="center"
android:textSize="20sp" />
```
以下是Activity中的按钮点击事件监听方法:
```
RadioGroup radioGroup = findViewById(R.id.radio_group);
TextView resultText = findViewById(R.id.result_text);
radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
RadioButton radioButton = group.findViewById(checkedId);
String result = "我选择的是" + radioButton.getText().toString();
resultText.setText(result);
}
});
```
在这个监听方法中,我们首先获取RadioGroup和TextView的实例,然后设置RadioGroup的选中监听器,当选中的单选框发生变化时,我们从RadioGroup中获取选中的RadioButton,并将其文本内容拼接到一个字符串中,最后将字符串设置为TextView的文本内容。
阅读全文