今日总结-安卓单选框与复选框

一。单选框

 

 

<RadioGroup
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
        android:orientation="horizontal">

    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="男"
        ></RadioButton>
    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="女"
        ></RadioButton>


</RadioGroup>

二。复选框

 

 

 <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="爱好"

     ></TextView>
    <CheckBox
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="游泳"
        android:id="@+id/cb1"
        ></CheckBox>
    <CheckBox
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="读书"
        android:id="@+id/cb2"
        ></CheckBox>
    <CheckBox
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="旅游"
        android:id="@+id/cb3"
        ></CheckBox>

 

posted @ 2023-03-02 20:01  小彭先森  阅读(46)  评论(0编辑  收藏  举报