Chinaunix首页 | 论坛 | 博客
  • 博客访问: 7679411
  • 博文数量: 961
  • 博客积分: 15795
  • 博客等级: 上将
  • 技术积分: 16612
  • 用 户 组: 普通用户
  • 注册时间: 2010-08-07 14:23
文章分类

全部博文(961)

文章存档

2016年(1)

2015年(61)

2014年(41)

2013年(51)

2012年(235)

2011年(391)

2010年(181)

分类: Android平台

2015-11-17 15:24:36

     单选钮在开发中提供了一种多选一的操作模式,也是经常见到的一种组件,例如:在选择文件编码的时候只能从多种编码中选择一种,或者是选择性别的时候只能从“男”或“女”之中选择一个,而在Android中可以使用RadioGroup来定义单选钮组件

点击(此处)折叠或打开

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout                     ?    定义线型布局管理器
  3.     xmlns:android=""
  4.     android:orientation="vertical"             ?    所有组件垂直摆放
  5.     android:layout_width="fill_parent"            ?    布局管理器宽度为屏幕宽度
  6.     android:layout_height="fill_parent">            ?    布局管理器高度为屏幕高度
  7.     <TextView                    ?    文本显示组件
  8.         android:id="@+id/sexinfo"            ?    组件ID,程序中使用
  9.         android:text="您的性别是:"            ?    默认显示文字
  10.         android:textSize="20px"                ?    文字大小为20像素
  11.         android:layout_width="fill_parent"            ?    组件宽度为屏幕宽度
  12.         android:layout_height="wrap_content"/>        ?    组件高度为文字高度
  13.     <RadioGroup                    ?    定义单选钮
  14.         android:id="@+id/sex"                ?    组件ID,程序中使用
  15.         android:layout_width="fill_parent"            ?    组件宽度为屏幕宽度
  16.         android:layout_height="wrap_content"        ?    组件高度为文字高度
  17.         android:orientation="horizontal"            ?    组件选项水平排列
  18.         android:checkedButton="@+id/male">            ?    默认选中组件ID
  19.         <RadioButton                ?    定义选项钮
  20.             android:id="@+id/male"            ?    组件ID,程序中使用
  21.             android:text="男"/>            ?    默认文字
  22.         <RadioButton                ?    定义选项钮
  23.             android:id="@+id/female"        ?    组件ID,程序中使用
  24.             android:text="女"/>            ?    默认文字
  25.     </RadioGroup>
  26. </LinearLayout>

020405_单选钮.ppt
阅读(802) | 评论(0) | 转发(0) |
0

上一篇:编辑框:EditText

下一篇:复选框:CheckBox

给主人留下些什么吧!~~