Android之checkbox

Posted 冷的锋刃

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android之checkbox相关的知识,希望对你有一定的参考价值。

MainActivity继承Activity使用OnCheckedChangeListener接口:

package com.cdp.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 MainActivity extends Activity implements OnCheckedChangeListener {
    //创建3个CheckBox对象
    private CheckBox cb1, cb2, cb3;
 
    @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();
    }
}

 run:

以上是关于Android之checkbox的主要内容,如果未能解决你的问题,请参考以下文章

Android之checkbox

UI控件之RadioButton(单选按钮)&Checkbox(复选按钮)

Android之自己定义checkbox样式

Android开始之Checkboxs

Android开发基础之控件CheckBox

Android开发基础之控件CheckBox