安卓UI控件——RadioButton

这篇博客介绍了如何在Android中使用RadioButton和RadioGroup来创建单选按钮,并实现互斥选择。通过XML布局文件展示了RadioButton的用法,包括设置文字和选中状态。同时,展示了Java代码片段,用于监听RadioGroup的选中变化,从而获取用户选择的年级并显示Toast提示。
摘要由CSDN通过智能技术生成

RadioButton

单选按钮,选中和未选中两种状态经常与RadioGroup配合使用,实现互斥关系。

系统默认的RadioButton都是图标在左侧,文字在右侧。

<TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="请选择年级"
        android:textSize="20sp" />

    <RadioGroup
        android:id="@+id/rg"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" />

    <RadioButton
        android:id="@+id/rb_one"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="一年级"
        android:checked="true"/>

    <RadioButton
        android:id="@+id/rb_two"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="二年级" />

    <RadioButton
        android:id="@+id/rb_three"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="三年级" />
    <Button
        android:id="@+id/submit"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="提交"/>

设置一个单选按钮,orientation是布局方式,采用的是horizontal水平布局

然后我们去获取单选按钮的值

  RadioGroup rg = findViewById(R.id.rg);
        rg.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(RadioGroup group, int checkedId) {
                RadioButton rb = findViewById(checkedId);
                Toast.makeText(MainActivity.this,"您选择的年级是:"+rb.getText().toString(),Toast.LENGTH_SHORT).show();
            }
        });

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

前路茫茫——何处无香

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值