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

//实例化  CheckBox
cb1 = (CheckBox) findViewById(R.id.cb1);

cb1.setOnCheckedChangeListener(this);

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

    } else {
      toastDisplay(buttonView.getText() + "取消选中");
    }
  }
}

05-06 09:00