如果选中单选按钮,如何选中复选框

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如果选中单选按钮,如何选中复选框相关的知识,希望对你有一定的参考价值。

我有一个对话框。我想更改已检查的属性,但我不能。如果选中单选按钮,我想检查复选框。

它是activity_main.xml

    <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">


    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="336dp"
        android:text="TextView"
        android:textSize="40sp"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/start" />

    <Button
        android:id="@+id/start"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="64dp"
        android:text="Button"
        app:layout_constraintBottom_toTopOf="@+id/textView"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

它是activity_dialog.xml,它提供了我的自定义对话框。

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <RadioGroup
        android:id="@+id/radioGroup"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toTopOf="@+id/start"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent">

        <RadioButton
            android:id="@+id/singleA"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:layout_marginTop="5dp"
            android:checked="false"
            android:onClick="tytClick"
            android:text="TYT" />

        <LinearLayout
            android:id="@+id/linearTYT"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dp"
            android:layout_marginStart="20dp"
            android:orientation="vertical"
            android:visibility="visible"
            tools:context=".MainActivity">

            <CheckBox
                android:id="@+id/multi1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:layout_marginTop="5dp"
                android:checked="false"
                android:clickable="false"
                android:focusable="false"
                android:focusableInTouchMode="false"
                android:text="Maths" />

            <CheckBox
                android:id="@+id/multi2"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:layout_marginTop="5dp"
                android:checked="false"
                android:text="Turkish"
                android:clickable="false"
                android:focusable="false"
                android:focusableInTouchMode="false"/>

            <CheckBox
                android:id="@+id/multi3"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:layout_marginTop="5dp"
                android:checked="false"
                android:clickable="false"
                android:focusable="false"
                android:focusableInTouchMode="false"
                android:text="English" />

        </LinearLayout>

        <RadioButton
            android:id="@+id/singleB"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:layout_marginTop="5dp"
            android:checked="false"
            android:onClick="aytClick"
            android:text="AYT" />

    </RadioGroup>
</android.support.constraint.ConstraintLayout>

并且是MainActivity.class

public class MainActivity extends AppCompatActivity {
final Context context = this;
Button start;
TextView textView;
CheckBox multi1, multi2,multi3;
RadioButton singleA, singleB;
LinearLayout linearTYT;
RadioGroup radioGroup;

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

    start = findViewById(R.id.start);
    textView = findViewById(R.id.textView);

    multi1 = findViewById(R.id.multi1);
    multi2 = findViewById(R.id.multi2);
    multi3 = findViewById(R.id.multi3);
    singleA = findViewById(R.id.singleA);
    singleB = findViewById(R.id.singleB);
    linearTYT = findViewById(R.id.linearTYT);
    radioGroup = findViewById(R.id.radioGroup);

    start.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            final Dialog dialog = new Dialog(context);
            dialog.setContentView(R.layout.activity_dialog);
            dialog.setTitle("Choose");

            dialog.show();

        }

    });
    if (singleA.isChecked()) {
        multi1.setChecked(true);
        multi2.setChecked(true);
        multi3.setChecked(true);
        linearTYT.setVisibility(View.VISIBLE);
    } else {
        multi1.setChecked(false);
        multi2.setChecked(false);
        multi3.setChecked(false);
        linearTYT.setVisibility(View.GONE);
    }
}}

我也尝试了View.GONE单选按钮下方的线性布局,但它崩溃了。我想我出现后无法改变对话视图。或者我不能做对。

答案

欢迎来到StackOverflow。

好像你是初学者。我提供的解决方案,但可能需要一些修改才能完美运行。

您需要修改OnClickListener。

首先,您在对话框中使用您的activity_dialog.class(我相信它是activity_dialog.xml)。所以,你根本无法通过Activity类的findViewById方法获得它的视图。有一个setOnCheckChangeListener方法来实现你想要的。它类似于Button.setOnClickListener()

OnClickListener -

start.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            final Dialog dialog = new Dialog(context);
            dialog.setContentView(R.layout.activity_dialog);
            dialog.setTitle("Choose");
            dialog.show();
            multi1 = dialog.findViewById(R.id.multi1);
            multi2 = dialog.findViewById(R.id.multi2);
            multi3 = dialog.findViewById(R.id.multi3);
            singleA = dialog.findViewById(R.id.singleA);
            singleB = dialog.findViewById(R.id.singleB);
            singleA.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
                @Override
                public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                    if (isChecked) {
                        multi1.setChecked(true);
                        multi2.setChecked(true);
                        multi3.setChecked(true);
                    }else{
                        multi1.setChecked(false);
                        multi2.setChecked(false);
                        multi3.setChecked(false);
                    }
                }
            });
            singleB.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
                @Override
                public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                    if (isChecked) {
                        multi1.setChecked(false);
                        multi2.setChecked(false);
                        multi3.setChecked(false);
                    }else{
                        multi1.setChecked(true);
                        multi2.setChecked(true);
                        multi3.setChecked(true);
                    }
                }
            });
        }

    });

根据您的需要,将需要一些调整。祝好运!!

以上是关于如果选中单选按钮,如何选中复选框的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript - 如果选中任何复选框,则选择单选按钮

如何知道 Dart 中是不是选中了复选框或单选按钮?

取消选中带有 Material UI 的单选按钮

jQuery怎样判断按钮是不是被选中

vb.net 点击按钮选中listview最后一行

jQuery如何获取选中单选按钮radio的值