RadioButton 是 Android 中的单选按钮控件,通常用于用户需要在多个选项中选择一个的情况。使用 RadioButton 控件很简单,以下是一些基本的用法:
<RadioGroup
android:id="@+id/radio_group"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<RadioButton
android:id="@+id/radio_button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 1"/>
<RadioButton
android:id="@+id/radio_button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 2"/>
</RadioGroup>
RadioGroup radioGroup = findViewById(R.id.radio_group);
radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
RadioButton radioButton = findViewById(checkedId);
String selectedOption = radioButton.getText().toString();
// 处理选中的选项
}
});
以上代码中,我们首先通过 findViewById 方法找到 RadioGroup 控件,然后设置一个 OnCheckedChangeListener 监听器,当用户点击 RadioButton 时,会触发 onCheckedChanged 方法,我们可以在这个方法中处理选中的选项。
如果希望在打开页面时就有一个选项被选中,可以在 XML 文件中为 RadioButton 添加 android:checked=“true” 属性。
<RadioButton
android:id="@+id/radio_button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 1"
android:checked="true"/>
这样在打开页面时,Option 1 将会被默认选中。
以上是 RadioButton 控件的基本用法,你可以根据自己的需求进行进一步的定制和使用。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。