1月15日 radiobutton

Posted on 2021-01-15 12:28  ***Pepsi***  阅读(19)  评论(0编辑  收藏  举报

6.radiobutton

继昨天学习Java之后

今天是与之对应的xml文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <RadioGroup
        android:id="@+id/rg_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
    <RadioButton
        android:id="@+id/rb_1"
        android:layout_width="60dp"
        android:layout_height="30dp"
        android:text="男"
        android:textSize="18sp"
        android:textColor="#FF6600"/>
        <RadioButton
            android:id="@+id/rb_2"
            android:layout_width="60dp"
            android:layout_height="30dp"
            android:text="女"
            android:textSize="18sp"
            android:layout_marginLeft="10dp"
            android:textColor="#FF6600"/>
    </RadioGroup>

</RelativeLayout>

 

Copyright © 2024 ***Pepsi***
Powered by .NET 8.0 on Kubernetes