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{
    
                    }
                }
            });
  • 相关阅读:
    VS的代码分析工具
    时间管理-SMART原则
    时间管理-该怎样进行时间管理
    ASP.NET Identity V2
    SQL Server 事务隔离级别的查看及更改
    GAC(Global Assembly Cache)注册/卸载 dll
    基于小米即时消息云服务(MIMC)的Web IM
    Spring Boot MyBatis配置多种数据库
    解决easyui combobox赋值boolean类型的值时,经常出现的内容显示的value而不是text的bug
    thymeleaf-extras-db 0.0.1发布,select标签加载数据的新姿势
  • 原文地址:https://www.cnblogs.com/linmob/p/14139692.html
Copyright © 2011-2022 走看看