Android studio RadioButton gravity

RadioButton是圆圈按钮

主要属性与Button类似,例如在性别选择上的运用

用要到RadioGroup

将同组RadioButton放在同一个RadioGroup里即可实现单选

<RadioGroup
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/Rgroup"
    android:orientation="vertical"
    >
    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/RadioButton2"
        android:text="男"
        android:textSize="18sp"
        />
    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/RadioButton3"
        android:text="女"
        android:textSize="18sp"
        />


</RadioGroup>

效果为

 

在设置默认属性checked时必须要将每个RadioButton加上id,否则很难实现

gravity 设置字体位置

 

posted @ 2022-02-14 22:19  软工小蜗牛  阅读(197)  评论(0编辑  收藏  举报