`
1140566087
  • 浏览: 558464 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
博客专栏
2c4ae07c-10c2-3bb0-a106-d91fe0a10f37
c/c++ 入门笔记
浏览量:18509
3161ba8d-c410-3ef9-871c-3e48524c5263
Android 学习笔记
浏览量:313841
Group-logo
J2ME 基础学习课程集
浏览量:18693
A98a97d4-eb03-3faf-af96-c7c28f709feb
Spring 学习过程记录...
浏览量:17550
社区版块
存档分类
最新评论

Android 学习之- 单选按钮、复选框、状态开关、时钟控件

阅读更多
//项目源码附上,可以下载共享!


<!--
     单选按钮操作测试:
	1、单选按钮:RadioButton 需要配合 RadioGroup 进行使用,RadioGroup 是 RadioGroup 的承载体
	2、每一组RadioGroup 里面只能有一个RadioButton 被选中,不同的组之间互不影响;
	3、一个RadioGroup 里面至少包含两个RadioButton , 能包含多个单选按钮;
	4、每一组RadioGroup 中都有一个默认的被选中的单选按钮,大部分的情况下建议选择第一个为默认选择
	案例测试:选择喜欢的颜色

-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center_horizontal"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="单选按钮测试" />

    <!-- 单选按钮的组  , 里面包含的是三个单选按钮 , 进行选择的测试 -->

    <RadioGroup
        android:id="@+id/group"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="20dp"
        android:orientation="horizontal" >

        <RadioButton
            android:id="@+id/radioRed"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="true"
            android:text="红色" />

        <RadioButton
            android:id="@+id/radioGreen"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="绿色" />

        <RadioButton
            android:id="@+id/radioBlack"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="黑色" />
    </RadioGroup>

    <!-- 复选框的测试 -->
    <!--
    	一组: CheckBox 能同时的选择多个,每次点击的时候可以选择是否被选中,在UI 中默认的是以矩形的方式显示;
    	事件:CompoundButton.OnCheckedChangeListener  后部分与按钮  状态控件的事件名称一致,加以不同的前缀进行区别

    -->

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="请选择您的爱好"
        android:textStyle="normal" />

    <CheckBox
        android:id="@+id/cb1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="游泳" />

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

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

    <CheckBox
        android:id="@+id/cb4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="篮球" />

    <!-- 状态开关测试 -->
    <!--
    	控件名称:ToggeButton 
    	属性:设置开/关的时候对应的文本的值:textOn/textOff 

    -->
    <!-- 开关转换器   默认是开 纵向 -->

    <ToggleButton
        android:id="@+id/toggle"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:checked="true"
        android:textOff="横向排列"
        android:textOn="纵向排列" />

    <!-- 使用线性布局结合状态栏的排列 -->

    <LinearLayout
        android:id="@+id/linears"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="clock1" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="clock2" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="clock3" />
    </LinearLayout>

</LinearLayout>




<!--
     时钟测试
	AnalogClock  		模拟时钟
	DigitalClock  		数字时钟
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/a"
    android:gravity="center_horizontal"
    android:orientation="vertical" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="时钟测试" />

    <AnalogClock
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center" />

    <!-- 数字时钟 -->
    <!--
    	时钟(AnalogClock和DigitalClock)的功能和用法:
		AnalogClock继承了View组件,重写了View的OnDraw方法,它会在View上显示模拟时钟。
		DigitalClock本身就继承了TextView,也就是说它本身就是文本框,只是它里面显示的内容是当前时间。
		AnalogClock和DigitalClock都会显示当前时间,不同的是;
		DigitalClock显示数字时钟,可以显示当前的秒数; 
		AnalogClock显示模拟时钟,不会显示当前秒数;
    -->

    <DigitalClock
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>
0
4
分享到:
评论

相关推荐

    Android-UI基本控件

    Android提供了丰富的控件供开发者使用,包括按钮、编辑框、文本视图、图片按钮、图片视图、复选框、单选按钮、模拟时钟、数字时钟以及日期选择器等。以下是对这些控件使用的详细说明。 首先,Button控件用于响应...

    Android常用基本控件

    - **简介**:`CheckBox`是一种复选框控件,具有“选中”和“未选中”两种状态。 - **特点**: - 继承自`CompoundButton`。 - 可以独立存在,允许多个复选框被同时选中。 - **应用场景**:适用于需要用户选择多个...

    android基本的UI控件和布局文件知识要点

    1. **CheckBox**:复选框,可以同时选中多个选项。 2. **RadioButton**:单选按钮,通常会被包含在一个`RadioGroup`中,这样就只能选中一个`RadioButton`。 #### 图片控件 - **ImageView**:用来展示图片,可以...

    VB 仿QQ单行文本框-下拉列表-按钮-日历控件最

    - `V_CheckBox.ctl` 和 `V_OptionButton.ctl`:复选框和选项按钮,用于提供多选或单选的选项,用户可以通过它们进行是/否或多项选择。 在VB中,这些控件的使用涉及到布局设计、事件处理、属性设置等多个方面。...

    VB程序设计VB基本程序控件编程PPT教案学习.pptx

    这些控件包括命令按钮、标签框、文本框、单选按钮、复选框、列表框、组合框、滚动条、时钟控件以及图片框和图像框。 命令按钮是交互式操作的主要元素,通过它可以触发事件,执行特定的操作。学习命令按钮,你需要...

    Android中常见控件的介绍和使用

    - `CheckBox`:用于创建复选框。 - `CompoundButton`:这是一个抽象类,`CheckBox` 和 `RadioButton` 都继承自它。 - `ExtractEditText`:提供了一个可以从父视图中提取出来的 `EditText`。 - `...

    控件应用VC6.0几种常用控件

    三、复选框(CheckBox)与单选按钮(RadioButton) 复选框让用户在多个选项中选择多个,而单选按钮则限于选择其中一个。它们通常成组出现,通过设置BST_CHECKED状态来表示选中或未选中。 四、列表框(ListBox)与...

    Android笔试面试题

    - **CheckBox**: 复选框,可以选择多个选项。 - **`android:checked`**: 设置初始状态。 - **RadioButton**: 单选按钮,一组中只能选一个。 - 通常会将多个RadioButton放在一个`RadioGroup`中来实现单选功能。 ##...

    Android控件及布局的使用

    - **CheckBox**:复选框,用户可以选择一个或多个选项。 ##### 4.3.6 RadioButton - **RadioButton**:单选按钮,同一组内只能选中一个选项。 ##### 4.3.7 AnalogClock - **AnalogClock**:显示模拟时钟。 ####...

    Android核心技术开发与实例详解—目录.pdf

    - **4.4.2 单选按钮和复选按钮使用案例**:通过实例展示单选按钮和复选按钮的应用技巧。 - **4.5 图片控件** - **4.5.1 ImageView类简介**:解释ImageView类的功能及其应用场景。 - **图片查看器**:通过具体...

    Android入门

    4. **单选按钮(RadioButton)和复选框(CheckBox)的功能与用法** - 单选按钮用于互斥的选择。 - 复选框用于多选。 5. **状态开关按钮(ToggleButton)和开关(Switch)的功能与用法** - 开关状态切换。 - Switch更...

    android学习笔记

    - **CheckBox**:复选框,可同时选择多个。 - **ImageButton**:图像按钮,结合图像与按钮功能。 - **ToggleButton**:双态按钮,状态切换时图标改变,适合显示状态变化。 - **Clock类控件**: - **AnalogClock*...

    常见窗体控件使用

    - **选择控件**:如复选框(CheckBox)、单选按钮(RadioButton)等,用于提供多选项供用户选择。 - **容器类控件**:如面板(Panel)、表格布局(TableLayoutPanel)等,用于容纳其他控件。 3. **了解其它标准控件的使用*...

    安卓开发-一个Demo搞定30个控件.zip

    9. CheckBoxGroup(自定义复选框组):自定义实现的一组复选框,便于管理多选逻辑。 10. RadioButtonGroup(自定义单选按钮组):与CheckBoxGroup类似,用于自定义单选逻辑。 11. ToggleButton(切换按钮):开关式...

    android——API中文文档

    - `CheckBox`: 复选框。 - `CompoundButton`: 包含多个状态的按钮,如单选或复选。 - `ExtractEditText`: 提供额外功能的文本输入框。 - `MultiAutoCompleteTextView`: 支持多行自动完成的文本输入框。 - `...

    VC通用控件使用实例

    1. **基础控件**:在VC++中,基础控件包括按钮(Button)、文本框(Edit)、标签(Static)、复选框(CheckBox)、单选按钮(RadioButton)等。这些控件是构建基本用户界面的基础,每个都有其特定的功能和用法。例如...

Global site tag (gtag.js) - Google Analytics