gpt4 book ai didi

java - 缺少的代码是什么?

转载 作者:行者123 更新时间:2023-11-29 03:25:37 25 4
gpt4 key购买 nike

package com.example.des;

import com.example.des.Question1;
import com.example.des.R;


import android.os.Bundle;
import android.app.Activity;
import android.app.AlertDialog;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.Toast;

public class Question1 extends Activity implements OnClickListener{

CheckBox q1;
CheckBox q2;
CheckBox q3;
CheckBox q4;
Button btndone;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.question);


q1 = (CheckBox)findViewById(R.id.q1a);
q2 = (CheckBox)findViewById(R.id.q2a);
q3 = (CheckBox)findViewById(R.id.q3a);
q4 = (CheckBox)findViewById(R.id.q4a);

btndone = (Button) findViewById(R.id.done);
btndone.setOnClickListener(this);
}

@Override
public void onClick(View v) {

if (q1.isChecked() && q2.isChecked()) {
new AlertDialog.Builder(this).setMessage(R.string.positive).show();
}

if (q3.isChecked() && q4.isChecked()) {
new AlertDialog.Builder(this).setMessage(R.string.negative).show();
}

}
}

如果检查 q1 和 q2,则结果必须为正,如果检查 q3 和 q4,则结果必须为负。但是当我检查 q1、q2 和 q3 时,结果也为正,不应给出结果。 .当它不仅检查 q1 和 q2 时..

最佳答案

希望我没听错:

if (q1.isChecked() && q2.isChecked() && !q3.isChecked() && !q4.isChecked()) {
new AlertDialog.Builder(this).setMessage(R.string.positive).show();
}

只有当 q1q2 被选中而其他两个没有被选中时才会起作用。

关于java - 缺少的代码是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21224737/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com