常用控件——单选按钮和复选框(设置基本信息)

这篇博客介绍了如何在Android开发中使用线性布局、TextView、Button、EditText、RadioGroup、RadioButton和CheckBox等常用控件,特别是重点讲解了如何创建和配置单选按钮组与复选框。通过一步步的案例分析,包括布局设计、XML代码编写、字符串资源设置和Java代码实现,展示了从无到有创建设置基本信息页面的过程。最后,展示了完成后的界面效果,包括输入信息、确定按钮响应以及清除和退出功能。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

涉及知识点
1、线性布局(LinearLayout)
2、标签(TextView)
3、按钮(Button)
4、编辑框(EditText)
5、单选按钮组(RadioGroup)
6、单选按钮(RadioButton)
7、复选框(CheckBox)

根据相关知识点做的脑图
在这里插入图片描述
我们现在做的是第一个案例:设置基本信息
1.思考要怎样做布局
2.准备背景图片
3.xml代码

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@mipmap/background"
    android:orientation="vertical"
    android:paddingLeft="20dp"
    android:paddingRight="20dp"
    android:paddingTop="30dp" >

    <TextView
        android:id="@+id/tv_set_information"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginBottom="30dp"
        android:text="@string/set_information"
        android:textColor="#0000ff"
        android:textSize="30sp" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/tv_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/name"
            android:textColor="#000000"
            android:textSize="16sp" />

        <EditText
            android:id="@+id/edt_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:ems="10"
            android:hint="@string/input_name"
            android:singleLine="true" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wr
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值