欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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>

 

运行结果如下:

Android开发:文本控件详解——RadioButton和CheckBox(一)基本属性

2、RadioGroup基本属性:

  (1)、orientation:排列方式

      若值为horizontal,则为横向,水平排列:

      android:orientation="horizontal"

Android开发:文本控件详解——RadioButton和CheckBox(一)基本属性

Android开发:文本控件详解——RadioButton和CheckBox(一)基本属性

 

若值为vertical,则为纵向,垂直排列。

      android:orientation="vertical"

Android开发:文本控件详解——RadioButton和CheckBox(一)基本属性

 

Android开发:文本控件详解——RadioButton和CheckBox(一)基本属性

 

 

相关标签: Android