gpt4 book ai didi

java - 如何使用 Android Studio 计算 Java 中的总和

转载 作者:行者123 更新时间:2023-12-02 09:40:14 24 4
gpt4 key购买 nike

我刚刚使用 Android Studio 学习了 Java。

我的代码错误,因为使用整数来计算总和。

我尝试将字符串解码为整数,但仍然错误。

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

edtvalue = (EditText) findViewById(R.id.value);
final Spinner edtjw = (Spinner) findViewById(R.id.spinner1);
txtpa = (TextView) findViewById(R.id.pa);
txttotal = (TextView) findViewById(R.id.total);

btncount.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String value = edtvalue.getText().toString().trim();
String jw = edtjw.getSelectedItem().toString().trim();

double h = Double.parseDouble(value);
double j = Double.parseDouble(jw);

String numbertostring = String.format ("%.2f", (0.02*h));
String numbertostring2 = String.format ("%.2f", (0.025*h));
String numbertostring3 = String.format ("%.2f", (0.0275*h));
if (j == 1){
txtpa.setText(numbertostring);
} else if (j ==2){
txtpa.setText(numbertostring);
} else if (j ==3){
txtpa.setText(numbertostring);
} else if (j ==4){
txtpa.setText(numbertostring2);
} else if (j ==5){
txtpa.setText(numbertostring3);
} else {
txtpa.setText(0);
}

int tot = (h*j)+txtpa;
txttotal.setText("Total : " + tot);
}}

最佳答案

通过查看代码 fragment ,您应该从 txtpa 中获取 TextView 类型的字符串值,然后将其解析为 double

double tot = (h*j)+Double.parseDouble(txtpa.getText().toString());

正如 Naitik Soni 在上述评论中提到的。

关于java - 如何使用 Android Studio 计算 Java 中的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57142303/

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