Android开发:文本控件详解——RadioButton和CheckBox(一)基本属性
程序员文章站
2022-05-15 11:23:27
...
这个博客的Android文章比较好,在此记录下他的博客论坛网址,学习时使用
博客论坛网址为:https://www.cnblogs.com/guobin-/p/10808173.html
一、RadioButton和RadioGroup:
RadioButton是单个的圆形单选框,而RadioGroup是可以容纳多个RadioButton存在的容器,因此RadioButton和RadioGroup往往都配合使用。
每个已经放入RadioGroup中的RadioButton只能有一个被选中,不放入RadioGroup中的RadioButton可以多选,和checkbox无异。
1、简单实例:
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true">
<RadioButton
android:id="@+id/buttonSchool1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/school1"
android:checked="true"/>
<RadioButton
android:id="@+id/buttonSchool2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/school2"/>
<RadioButton
android:id="@+id/buttonSchool3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/school3"/>
<RadioButton
android:id="@+id/buttonSchool4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/school4"/>
</RadioGroup>
运行结果如下:
2、RadioGroup基本属性:
(1)、orientation:排列方式
若值为horizontal,则为横向,水平排列:
android:orientation="horizontal"
若值为vertical,则为纵向,垂直排列。
android:orientation="vertical"
上一篇: 海峡城获优惠及扶持政策 引云计算企业入驻
下一篇: 计算字符串的长度批处理