本文实例讲述了Android开发中CheckBox的简单用法。分享给大家供大家参考,具体如下:
CheckBox是一种在界面开发中比较常见的控件,Android中UI开发也有CheckBox,简单的说下它的使用,每个CheckBox都要设置监听,设置的监听为CompouButton.OnCheckedChangedListener()。
package com.zhuguangwei; import android.app.Activity; import android.os.Bundle; import android.widget.CheckBox; import android.widget.CompoundButton; import android.widget.TextView; public class ChkBoxActivity extends Activity { private TextView myTextView; private CheckBox myApple; private CheckBox myOrange; private CheckBox myBanana; private CheckBox myWaterMelon; private CheckBox myStrawBerry; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); //通过ID找到TextView myTextView = (TextView) findViewById(R.id.myTextView); //通过ID找到这几个CheckBox myApple = (CheckBox) findViewById(R.id.Apple); myOrange = (CheckBox) findViewById(R.id.Orange); myBanana = (CheckBox) findViewById(R.id.banana); myWaterMelon = (CheckBox) findViewById(R.id.watermelon); myStrawBerry = (CheckBox) findViewById(R.id.strawberry); myApple.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { // TODO Auto-generated method stub if(isChecked){ myTextView.append(myApple.getText().toString()); } else{ if(myTextView.getText().toString().contains("苹果")){ myTextView.setText(myTextView.getText().toString().replace("苹果", "")); } } } }); myOrange.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { // TODO Auto-generated method stub if(isChecked){ myTextView.append(myOrange.getText().toString()); } else{ if(myTextView.getText().toString().contains("橘子")){ myTextView.setText(myTextView.getText().toString().replace("橘子", "")); } } } }); myBanana.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { // TODO Auto-generated method stub if(isChecked){ myTextView.append(myBanana.getText().toString()); } else{ if(myTextView.getText().toString().contains("香蕉")){ myTextView.setText(myTextView.getText().toString().replace("香蕉", "")); } } } }); myWaterMelon.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { // TODO Auto-generated method stub if(isChecked){ myTextView.append(myWaterMelon.getText().toString()); } else{ if(myTextView.getText().toString().contains("西瓜")){ myTextView.setText(myTextView.getText().toString().replace("西瓜", "")); } } } }); myStrawBerry.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { // TODO Auto-generated method stub if(isChecked){ myTextView.append(myStrawBerry.getText().toString()); } else{ if(myTextView.getText().toString().contains("草莓")){ myTextView.setText(myTextView.getText().toString().replace("草莓", "")); } } } }); } }
main.xml文件内容为:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:id="@+id/myTextView" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="请选择你一下你喜欢吃的水果:" /> <CheckBox android:id="@+id/Apple" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="苹果" /> <CheckBox android:id="@+id/Orange" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="橘子" /> <CheckBox android:id="@+id/banana" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="香蕉" /> <CheckBox android:id="@+id/watermelon" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="西瓜" /> <CheckBox android:id="@+id/strawberry" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="草莓" /> </LinearLayout>
运行结果为:
更多关于Android相关内容感兴趣的读者可查看本站专题:《Android控件用法总结》、《Android编程之activity操作技巧总结》、《Android视图View技巧总结》、《Android操作SQLite数据库技巧总结》、《Android操作json格式数据技巧总结》、《Android数据库操作技巧总结》、《Android文件操作技巧汇总》、《Android编程开发之SD卡操作方法汇总》、《Android资源操作技巧汇总》及《Android开发入门与进阶教程》
希望本文所述对大家Android程序设计有所帮助。
实例一、使用HTTP协议对外提供Web服务 创建http_test.php文件(位置任意,能引用到Workerman/Autoloader.php即可,下同) <?php use WorkermanWorker; require_once __DIR__ . '/Workerman/Autoloader.php'; // 创建一个Worker监听2345端口,使用http协议通讯 $http_w
本文向大家介绍Android NDK开发的环境搭建与简单示例,包括了Android NDK开发的环境搭建与简单示例的使用技巧和注意事项,需要的朋友参考一下 一、NDK与JNI简介 NDK全称为native development kit本地语言(C&C++)开发包。而对应的是经常接触的Android-SDK,(software development kit)软件开发包(只支持java语言开发)。
本文向大家介绍WebForm获取checkbox选中的值(几个简单的示例),包括了WebForm获取checkbox选中的值(几个简单的示例)的使用技巧和注意事项,需要的朋友参考一下 PS:最近在做权限管理这个模块,发现用checkbox的地方挺多的,于是写了个简单的例子,以供以后学习和使用。 1.前端页面: 2.后台方法:
所以我用Java创建了一个手机应用程序,上面有一个简单的计时器,从0秒开始到50秒。我如何让这个计时器从50秒开始到0秒。就像一个倒数计时器。请帮帮忙。 }
本文向大家介绍android开发实践之ndk编译命令简单示例,包括了android开发实践之ndk编译命令简单示例的使用技巧和注意事项,需要的朋友参考一下 前言 Android提供了NDK工具,用来编译native代码(c/c++),该工具配置好了相关的交叉编译环境和工具链,只需要你简单地编写几个.mk文件即可将你的c/c++代码编译为Android的java工程/Android手机可以识别、加载
本文向大家介绍Yii2中DropDownList简单用法示例,包括了Yii2中DropDownList简单用法示例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Yii2中DropDownList简单用法。分享给大家供大家参考,具体如下: 这里以实际应用为例讲解Yii2 DropDownList用法。 有一张分类表,无限极分类那种,表结构如下,pid就是父分类ID 这里我们要实现: 新建分
本文向大家介绍Android开发中的简单设置技巧集锦,包括了Android开发中的简单设置技巧集锦的使用技巧和注意事项,需要的朋友参考一下 本文实例总结了Android开发中的简单设置技巧。分享给大家供大家参考,具体如下: 1开机图片: android-logo-mask.png android-logo-shine.png 这两个图片一个在上一个在下 ./out/target/common/ob
由于在某些嵌入式系统中使用的是Android系统,这里给出一个简单的Android App的示例,具体代码可以从clone自https://github.com/phodal/iot-android 代码说明,经过测试的版本有 Android 2.3 Android 4.0.4 机型有 HTC G1 (android 2.3) Motor xt300 (android 2.3) Sony ST25