zoukankan      html  css  js  c++  java
  • Androd点击一个选框取消其他选框

    说明:

    我做的体温填报系统需要在填报体温时勾选有无特殊情况

    当勾选’无‘时需要将用户勾选的其他选框取消

    当勾选其他选框时需要将‘无’这个选框取消

    效果:

    代码:

    addTem.xml

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="vertical"
                    android:layout_marginTop="10dp"
                    android:layout_marginRight="40dp"
                    android:layout_marginLeft="40dp"
                    android:background="@drawable/layout_drawable">
                    <TextView
                        android:id="@+id/textView2"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="特殊情况(可多选,需要填写说明)"
                        android:textColor="@color/black"
                        android:textSize="20dp" />
                    <LinearLayout
                        android:layout_marginTop="5dp"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content">
                        <CheckBox
                            android:checked="true"
                            android:id="@+id/checkBox1"
                            style="@style/MyCheckBox"/>
                        <TextView
                            android:text="无"
                            android:textColor="@color/black"
                            android:textSize="20dp"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"/>
                    </LinearLayout>
                    <LinearLayout
                        android:layout_marginTop="5dp"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content">
                        <CheckBox
                            android:checked="false"
                            android:id="@+id/checkBox2"
                            style="@style/MyCheckBox"/>
                        <TextView
                            android:text="2020年12月27日至今去过或现在居住在中高风险地区"
                            android:textColor="@color/black"
                            android:textSize="20dp"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"/>
                    </LinearLayout>
                    <LinearLayout
                        android:layout_marginTop="5dp"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content">
                        <CheckBox
                            android:checked="false"
                            android:id="@+id/checkBox3"
                            style="@style/MyCheckBox"/>
                        <TextView
                            android:text="本人或家人正在集中隔离"
                            android:textColor="@color/black"
                            android:textSize="20dp"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"/>
                    </LinearLayout>
                    <LinearLayout
                        android:layout_marginTop="5dp"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content">
                        <CheckBox
                            android:checked="false"
                            android:id="@+id/checkBox4"
                            style="@style/MyCheckBox"/>
                        <TextView
                            android:text="今日居住地异动"
                            android:textColor="@color/black"
                            android:textSize="20dp"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"/>
                    </LinearLayout>
                    <LinearLayout
                        android:layout_marginTop="5dp"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content">
                        <CheckBox
                            android:checked="false"
                            android:id="@+id/checkBox5"
                            style="@style/MyCheckBox"/>
                        <TextView
                            android:text="其他情况"
                            android:textColor="@color/black"
                            android:textSize="20dp"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"/>
                    </LinearLayout>
                </LinearLayout>

    addTem.java

        CK1.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener(){
                @Override
                public void onCheckedChanged(CompoundButton buttonView,
                                             boolean isChecked) {
                    // TODO Auto-generated method stub
                    if(isChecked){
                        CK2.setChecked(false);
                        CK3.setChecked(false);
                        CK4.setChecked(false);
                        CK5.setChecked(false);
                        if(flag==1){
                            linearLayout.removeView(add);
                            RemoveView();
                        }
                    }else{
    
                    }
                }
            });
            CK2.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener(){
                @Override
                public void onCheckedChanged(CompoundButton buttonView,
                                             boolean isChecked) {
                    // TODO Auto-generated method stub
                    if(isChecked){
                        CK1.setChecked(false);
                        AddView();
    
                    }else{
    
                    }
                }
            });
            CK3.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener(){
                @Override
                public void onCheckedChanged(CompoundButton buttonView,
                                             boolean isChecked) {
                    // TODO Auto-generated method stub
                    if(isChecked){
                        CK1.setChecked(false);
                        AddView();
    
                    }else{
    
                    }
                }
            });
            CK4.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener(){
                @Override
                public void onCheckedChanged(CompoundButton buttonView,
                                             boolean isChecked) {
                    // TODO Auto-generated method stub
                    if(isChecked){
                        CK1.setChecked(false);
                        AddView();
    
                    }else{
    
                    }
                }
            });
            CK5.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener(){
                @Override
                public void onCheckedChanged(CompoundButton buttonView,
                                             boolean isChecked) {
                    // TODO Auto-generated method stub
                    if(isChecked){
                        CK1.setChecked(false);
                        AddView();
    
                    }else{
    
                    }
                }
            });
  • 相关阅读:
    如何将javaweb项目部署到阿里云服务器上
    解决ueditor配置文件第一行报错及乱码问题
    解决web.xml中<async-supported>true</async-supported>报错问题
    解决建完Maven项目没有main文件夹问题
    CentOS常用命令之搜索文件
    CentOS常用命令之创建删除剪切链接
    Jupyter notebook: TypeError: __init__() got an unexpected keyword argument 'io_loop 问题
    编译分布式并行版caffe(Open MPI)教程
    树状数组
    马拉车算法
  • 原文地址:https://www.cnblogs.com/linmob/p/14610212.html
Copyright © 2011-2022 走看看