`
qianlong1207
  • 浏览: 36542 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

android_checkBox自学

 
阅读更多

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />
    <CheckBox 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/sportsCheckBox"
        android:text="@string/sportsTxt"
        />
    <CheckBox 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/movieCheckBox"
        android:text="@string/movieTxt"
        />
</LinearLayout>
 

 

strings.xml

 

 

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="hello">爱好选择</string>
    <string name="app_name">CheckBox</string>
    <string name="sportsTxt">体育</string>
    <string name="movieTxt">电影</string>

</resources>

 

CheckBoxActivity.java

package com.qianlong.activity;

import android.app.Activity;
import android.os.Bundle;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.Toast;
import android.widget.CompoundButton.OnCheckedChangeListener;

public class CheckBoxActivity extends Activity {
	private CheckBox sportsCheckBox;
	private CheckBox movieCheckBox;
	
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        this.sportsCheckBox = (CheckBox) this.findViewById(R.id.sportsCheckBox);
        this.movieCheckBox = (CheckBox) this.findViewById(R.id.movieCheckBox);
        
        this.sportsCheckBox.setOnCheckedChangeListener(new OnCheckedChangeListener() {
			
			@Override
			public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
				if(isChecked) {
					Toast.makeText(CheckBoxActivity.this, "您选择了体育!", Toast.LENGTH_SHORT).show();
				}
			}
		});
        
        this.movieCheckBox.setOnCheckedChangeListener(new OnCheckedChangeListener() {
			@Override
			public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
				if(isChecked) {
					Toast.makeText(CheckBoxActivity.this, "您选择了电影!", Toast.LENGTH_SHORT).show();
				}
			}
		});
    }
}
 

 

分享到:
评论

相关推荐

    jstree_checkbox

    "jstree_checkbox"是一个专门用于创建具有复选框功能的权限树结构的JavaScript库。在Web开发中,这样的工具非常实用,特别是在处理用户角色、权限分配或组织结构等需要多级选择和层级关系的场景。它允许用户通过交互...

    kivy_checkbox.rar

    在这个例子中,当CheckBox的状态改变时,`on_checkbox_active`方法会被调用,根据新状态打印相关信息。 通过这样的实践,你可以更好地理解Kivy中的CheckBox控件,掌握其属性和事件处理机制,从而创建更丰富的用户...

    完整版模块_CHECKBOX.rar

    在IT行业中,"完整版模块_CHECKBOX.rar"的标题和描述暗示了这可能是一个软件开发相关的资源包,其中包含了有关复选框(Checkbox)功能的完整实现或组件。复选框是用户界面(UI)设计中常见的元素,常用于让用户在多...

    dtree和dtree_checkbox(dtree复选框)

    **dtree与dtree_checkbox: JS控件的深入解析** 在网页开发中,交互性和用户体验是至关重要的元素,而JavaScript(简称JS)作为客户端脚本语言,为实现这些功能提供了强大的支持。在这个话题中,我们将重点探讨两种...

    mp_checkbox_捆绑_

    【标题】"mp_checkbox_捆绑_" 指的可能是一个软件或者工具,它与复选框(checkbox)功能有关,并且具有捆绑(bundling)特性。在IT领域,"捆绑"通常指的是将多个文件或应用程序集合在一起,形成一个单一的安装包或可...

    Ext_Net_CheckboxGroup 勾选、全选、反选和限制勾选

    Ext_Net_CheckboxGroup 勾选、全选、反选和限制勾选

    C#_winform_GridView_CheckBox_多选_全选

    "C#_winform_GridView_CheckBox_多选_全选"这个主题就专门探讨了如何在WinForm的GridView中实现复选框的多选和全选功能。 首先,我们需要理解GridView的基本用法。GridView是.NET Framework中的System.Windows....

    RadioBox_and_CheckBox

    在Android开发中,`RadioBox`(单选按钮)和`CheckBox`(复选框)是用户界面(UI)设计中常见的控件,用于收集用户的输入。它们在很多场景下都发挥着重要作用,如设置选项、进行多选或单选等。本教程将深入讲解这两...

    android中CheckBox加载自定义选中与未选中图片样式

    在Android开发中,CheckBox是一个常用的UI组件,用于提供两种状态的选择:选中和未选中。默认情况下,CheckBox的选中和未选中状态的图标是系统提供的,但有时为了满足应用的个性化需求,我们需要自定义这些图片样式...

    dtree_checkbox

    标题 "dtree_checkbox" 暗示我们正在讨论一个与数据树(treeview)相关的功能,特别是涉及复选框(checkbox)的实现。在IT领域,数据树是一种常用的数据结构,用于展示层次化数据,而复选框则常用于提供多选选项。这...

    DuiLib_CheckBox

    "DuiLib_CheckBox"是针对DuiLib中的CheckBox控件进行的一种功能扩展,使得CheckBox能够支持全选、全不选以及非全选这三种状态。 在传统的CheckBox控件中,通常只有两种状态:选中(Checked)和未选中(Unckecked)...

    Android_UI.rar_android_android gis_android 控件_android ui_java

    常见的视图组件包括按钮(Button)、文本框(EditText)、图像视图(ImageView)、复选框(CheckBox)、单选按钮(RadioButton)、进度条(ProgressBar)等。视图组如线性布局(LinearLayout)、相对布局...

    高仿京东购物车listview_checkbox实现全选

    在Android应用开发中,"高仿京东购物车listview_checkbox实现全选" 是一个常见的功能需求,尤其是在构建电商类应用程序时。这个标题所指的示例项目,旨在演示如何使用ListView和CheckBox组件来创建一个类似京东、...

    checkbox 设定文字和选框之间的距离及自定义样式

    在Android中,我们可以创建一个XML文件(如`checkbox_style.xml`)在`res/values`目录下的`styles.xml`文件中定义自定义样式。以下是一个自定义Checkbox样式的例子: ```xml &lt;item name="android:button"&gt;@...

    android CheckBox的使用

    在Android开发中,CheckBox是用户界面(UI)中不可或缺的组件之一,它允许用户进行多选操作,非常适合在列表或选项中提供多个可选项目。本教程将深入讲解如何在Android应用中有效地使用CheckBox。 首先,我们需要...

    check_frame.zip_GRoupBox_check box_checkbox_group box

    标题"check_frame.zip_GRoupBox_check box_checkbox_group box"提示我们将讨论如何用`CheckBox`来替代`GroupBox`的标题功能。 描述中提到"使用CheckBox代替Frame/GroupBox的标题",这是一种创新的设计方法,可以...

    Android_ui.zip_android_android 界面_android ui_android 界面_android

    控件是用户界面的基本元素,包括按钮(Button)、文本输入框(EditText)、复选框(CheckBox)、单选按钮(RadioButton)、图片(ImageView)等。它们提供了用户与应用交互的途径,例如按钮可以响应点击事件,文本...

    项目开发--学生管理系统

    m_ToolBar.SetButtonStyle(0,TBBS_CHECKBOX); m_ToolBar.SetButtonStyle(1,TBBS_CHECKBOX); m_ToolBar.SetButtonStyle(2,TBBS_CHECKBOX); m_ToolBar.SetButtonStyle(3,TBBS_CHECKBOX); m_ToolBar.SetButtonStyle...

    customfield_checkbox_utility

    git clone到Redmine路径上的plugins/customfield_checkbox_utility 。 $ cd {RAILS_ROOT}/plugins $ git clone https://github.com/preciousplum/customfield_checkbox_utility 重新启动Redmine。 现在,您应该...

    datagrid_checkbox.zip

    "datagrid_checkbox.zip"这个压缩包文件显然与使用DataGridView控件并添加复选框(Checkbox)功能有关,特别是实现全选和反选的功能。这在数据操作中非常常见,比如用户需要批量选择或取消选择表格中的项。 在...

Global site tag (gtag.js) - Google Analytics