zoukankan      html  css  js  c++  java
  • 3.Android之单选按钮RadioGroup和复选框Checkbox学习

    单选按钮和复选框在实际中经常看到,今天就简单梳理下。

    首先,我们在工具中拖进单选按钮RadioGroup和复选框Checkbox,如图:

    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" >

    <RadioButton
    android:id="@+id/rightbutton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="对" />

    <RadioButton
    android:id="@+id/falsebutton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="错" />

    <CheckBox
    android:id="@+id/run_checkbox"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="跑步" />

    <CheckBox
    android:id="@+id/read_checkbox"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="看书" />

    <Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="设置" />

    </LinearLayout>

    我们修改下RadioButton部分代码改成:

    <RadioGroup
    android:id="@+id/judge"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <RadioButton
    android:id="@+id/rightbutton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:checked="true"
    android:text="对" />

    <RadioButton
    android:id="@+id/falsebutton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="错" />
    </RadioGroup>

    效果如下:

  • 相关阅读:
    879. 盈利计划 力扣 动态规划 难
    js 在浏览器中使用 monaco editor
    py 时间处理
    Xpath in JavaScript
    js 拖拽排序
    JavaScript如何获取网页的宽高,以及如何兼容(各种坑详解)
    JavaScript删除对象的某个属性的方法
    CSS渐变知识
    如何选定搭建个人独立博客工具
    Codeforces Round #714 (Div. 2) 题解(A-D)
  • 原文地址:https://www.cnblogs.com/benchao/p/5070545.html
Copyright © 2011-2022 走看看