gpt4 book ai didi

java - 如何使用单选按钮根据用户输入执行不同的方程?

转载 作者:行者123 更新时间:2023-12-02 01:46:45 29 4
gpt4 key购买 nike

我在使用单选按钮根据用户输入执行不同的计算时遇到问题。如果 radioButton.isChecked,用户插入其值并单击“计算”按钮,我无法检索答案。

我已经在 OnClickListener 中尝试了 if/else 语句,但如果我选择相应的按钮,应用程序就会崩溃。

让我解释一下我的代码:

  1. 用户选择所需的radioButton;
  2. 用户插入数据并进行验证:该字段不能为空或只有一个点 (.)(作为不让应用崩溃的一种形式,并且它运行良好);
  3. 用户点击“计算”按钮,然后在 TextView 上检索与所选单选按钮相关的答案。

这里是:

calcbtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (view.getId() == R.id.calcbtn){
float n1, n2;
String value1 = vol.getText().toString(); //storing user inputs
String value2 = tempo.getText().toString();
if (value1.equals("") || value1.equals(".")) { //validation starts in this line
n1 = 0;
} else {
n1 = Float.parseFloat(value1);
}
if (value2.equals("") || value2.equals(".")) {
n2 = 0;
} else {
n2 = Float.parseFloat(value2);
} //validation ends
if (radioButton1.isChecked()){ //calculation starts
float ansA = n1/(n2*3);
resultATextView.setText(String.format("The result A is: ", ansA));
float ansB = n1/n2;
resultBTextView.setText(String.format("The result B is: ", ansB));
}
else if (radioButton2.isChecked()){
float ansC = (n1/n2)*20;
resultCTextView.setText(String.format("The result C is: ", ansC));
float ansD = (n1/n2)*60;
resultDTextView.setText(String.format("The result D is: ", ansD));
}
}
}
});

我应该在每个受尊重的 TextView 中检索答案,但如果我只选择一个按钮,应用程序就会崩溃。我是 Java 初学者,非常感谢您的帮助。

最佳答案

问题可能是由输出引起的。没有格式化程序。

String.format("结果D为:", ansD);

要使其提供正确的输出,请尝试:

String.format("The result A is: %.1f", ansA);
String.format("The result B is: %.1f", ansB);
String.format("The result C is: %.1f", ansC);
String.format("The result D is: %.1f", ansD);

enter image description here

关于java - 如何使用单选按钮根据用户输入执行不同的方程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57450415/

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