您的位置:首页 > 移动开发 > Android开发

Android学习(二)CheckBox 实现

2012-07-02 11:45 260 查看


实现步骤:

1.implements OnCheckedChangListener

2.实例化CheckBox对象

3.对象绑定setOnCheckdChangeListener监听

4.重写监听函数onCheckedChanged(CompoundButton buttonView, boolean isChecked)

buttonView 选中状态发生改变的那个按钮

isChecked 表示按钮新的状态(true/false)

public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {

package com.luwenjie.CheckBox;

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 CheckBoxProjectActivity extends Activity implements OnCheckedChangeListener {
private CheckBox cb1, cb2, cb3;//创建3个CheckBox对象

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//实例化3个CheckBox
cb1 = (CheckBox) findViewById(R.id.cb1);
cb2 = (CheckBox) findViewById(R.id.cb2);
cb3 = (CheckBox) findViewById(R.id.cb3);

cb1.setOnCheckedChangeListener(this);
cb2.setOnCheckedChangeListener(this);
cb3.setOnCheckedChangeListener(this);
}

//重写监听器的抽象函数
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {//buttonView 选中状态发生改变的那个按钮
//isChecked 表示按钮新的状态(true/false)
if (cb1 == buttonView || cb2 == buttonView || cb3 == buttonView) {
if (isChecked) {
//显示一个提示信息
toastDisplay(buttonView.getText() + "选中");

} else {
toastDisplay(buttonView.getText() + "取消选中");
}
}
}
public void toastDisplay(String str) {
Toast.makeText(this, str, Toast.LENGTH_SHORT).show();
}
}


本文出自 “小毛子” 博客,请务必保留此出处http://xiaomaozi.blog.51cto.com/925779/915848
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: