CheckBox多选按钮实现CompoundButton.OnCheckedChangeListener

CheckBox多选按钮实现CompoundButton.OnCheckedChangeListeneractivity_main.xml

大家好,又见面了,我是你们的朋友全栈君。

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="com.example.gby.s01_e09_checkbox.MainActivity">

    <TextView  android:id="@+id/tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical" />

    <CheckBox  android:id="@+id/eatId" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="吃饭" />
    <CheckBox  android:id="@+id/sleepId" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="睡觉" />
    <CheckBox  android:id="@+id/dotaId" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="dota" />

    <!--<Button-->
        <!--android:id="@+id/bt_selectall"-->
        <!--android:layout_width="wrap_content"-->
        <!--android:layout_height="wrap_content"-->
        <!--android:text="全选" />-->
    <!--<Button-->
        <!--android:id="@+id/bt_reverseSelection"-->
        <!--android:layout_width="wrap_content"-->
        <!--android:layout_height="wrap_content"-->
        <!--android:text="反选" />-->
    <!--<Button-->
        <!--android:id="@+id/bt_deselectall"-->
        <!--android:layout_width="wrap_content"-->
        <!--android:layout_height="wrap_content"-->
        <!--android:text="取消选择" />-->

</LinearLayout>

MainActivity.java

package com.example.gby.s01_e09_checkbox;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

    private CheckBox eatBox;
    private CheckBox sleepBox;
    private CheckBox dotaBox;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        eatBox = (CheckBox)findViewById(R.id.eatId);
        sleepBox = (CheckBox)findViewById(R.id.sleepId);
        dotaBox = (CheckBox)findViewById(R.id.dotaId);

        CheckBoxListener listener = new CheckBoxListener();//声明实例化 监听器对象
        eatBox.setOnCheckedChangeListener(listener);//设置setOn监听器CheckedChangeListener,参数是监听器对象
        sleepBox.setOnCheckedChangeListener(listener);//不论哪个控件被点击,都会调用onCheckedChanged()方法
        dotaBox.setOnCheckedChangeListener(listener);

//        OnBoxClickListener listener = new OnBoxClickListener();//声明listener实例化OnClickListner的被实现对象OnBoxClickListener
//        eatBox.setOnClickListener(listener);//1个监听器可以绑定在多个控件上
//        sleepBox.setOnClickListener(listener);
//        dotaBox.setOnClickListener(listener);
    }
//OnCheckedChangeListener,CompoundButton的接口,可以理解为转为CheckBox设计的
    class CheckBoxListener implements CompoundButton.OnCheckedChangeListener{
        @Override
        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
            if (buttonView.getId() == R.id.eatId){//判断被选中的是哪个CheckBox多选按钮的ID
                System.out.println("eatBox");
            }
            else if (buttonView.getId() == R.id.sleepId){
                System.out.println("sleepBox");
            }
            else if (buttonView.getId() == R.id.dotaId){
                System.out.println("dotaBox");
            }

            if (isChecked){//判断 选中状态 的 布尔值boolean
                System.out.println("checked");
            }
            else {
                System.out.println("unchecked");
            }
        }
    }
    //OnClickListener的使用方法
//    class OnBoxClickListener implements View.OnClickListener{
    @Override
//        public void onClick(View view) {
//            CheckBox box = (CheckBox)view;//向下转型
//System.out.println("id-->"+view.getId());//打印view.id
//            if (box.getId() == R.id.eatId){//判断是哪个checkBox的ID,并且打印相应的语句
//                System.out.println("eatBox");
//
//            }
//            else if (box.getId() == R.id.sleepId){
//                System.out.println("sleepBox");
//            }
//            else if (box.getId() == R.id.dotaId){
//                System.out.println("dotaBox");
//            }
//            if ( box.isChecked();){//返回是否被选中状态
//                System.out.println("checked");
//            }
//            else{
//                System.out.println("unchecked");
//            }
//            System.out.println("Checkbox is clicked");
//        }
//      }
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/133951.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 多尺度二维离散小波分解wavedec2

    多尺度二维离散小波分解wavedec2对X进行N尺度小波分解[C,S]=wavedec2(X,N,’wname’);clc,clearall,closeall;loadwoman;[c,s]=wavedec2(X,2,’db1′);%进行2尺度二维离散小波分解。分解小波函数-db1[cH1,cV1,cD1]=detcoef2(‘all’,c,s,1);%尺度1的所有方向的高频系数[cH2,cV2,c…

  • lucene定义自己的分词器将其分成单个字符

    lucene定义自己的分词器将其分成单个字符

  • 常用Python库_编程代码大全

    常用Python库_编程代码大全环境管理管理Python版本和环境的工具p–非常简单的交互式python版本管理工具。pyenv–简单的Python版本管理工具。Vex–可以在虚拟环境中执行命令。virtualenv–创建独立Python环境的工具。virtualenvwrapper-virtualenv的一组扩展。包管理管理包和依赖的工具。pip–Python包和依赖关系管理工具。pi…

  • MySQL安装配置教程(超级详细、保姆级)

    MySQL安装配置教程(超级详细、保姆级)一、下载MySQLMysql官网下载地址https://downloads.mysql.com/archives/installer/1.选择想要安装的版本,本篇文章选择的是5.7.31版本,下面的那个文件,点击Download下载二、安装MySQL1.选择设置类型双击运行mysql-installer-community-5.7.31.0.msi这里选择是自定义安装,所以直接选择“Custom”,点击“Next”“DeveloperDefault”是开发者默认

  • Ubuntu彻底卸载jdk「建议收藏」

    Ubuntu彻底卸载jdk「建议收藏」参考链接原链接1、移除所有java相关的包(sun,Oracle,openJDK,lcedTeaplugins,GIJ)#apt-getupdate#apt-cachesearchjava|awk'{print($1)}’|grep-E-e’^(ia32-)?(sun|oracle)-java’-e’^openjdk-‘-e’^icedtea’-e’^(default|gcj)-j(re|dk)’-e’^gcj-(.*)-j(re|dk)’-e’

  • pycharm 社区版 激活码_最新在线免费激活「建议收藏」

    (pycharm 社区版 激活码)这是一篇idea技术相关文章,由全栈君为大家提供,主要知识点是关于2021JetBrains全家桶永久激活码的内容https://javaforall.cn/100143.htmlIntelliJ2021最新激活注册码,破解教程可免费永久激活,亲测有效,上面是详细链接哦~0VOERWDQ5R-eyJsaWNlb…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号