码迷,mamicode.com
首页 > 移动开发 > 详细

3.Android之单选按钮RadioGroup和复选框Checkbox学习

时间:2015-12-23 17:57:40      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

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

首先,我们在工具中拖进单选按钮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>

效果如下:技术分享

 

3.Android之单选按钮RadioGroup和复选框Checkbox学习

标签:

原文地址:http://www.cnblogs.com/benchao/p/5070545.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!