安卓UI控件——RadioButton

邬宜然
2023-12-01

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();
            }
        });

 

 类似资料: