Android 移动版问卷调查

用android studio 实现上图的内容,首先是设计界面,线性布局用LinearLayout,布局中有android:orientation属性控制排列方向,horizontal为水平,vertical为垂直方向;第一题为单选题,用RadioGroup和RadioButton结合使用,第二题为多选题,使用CheckBox按钮;两个普通Button按钮;三个文本框,第一第二个显示问题,第三个显示结果。

.xml布局代码为

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/tex1"
        android:text="球王“贝利”是哪个国家的人:"
        />

    <RadioGroup
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/rg">
    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/b11"
        android:text="巴西"/>
    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/b12"
        android:text="德国"/>
    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="w
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值