- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
它基本上是一个计算器应用程序。当用户返回编辑之前编辑的编辑文本并第二次单击计算按钮时,就会出现问题。我知道答案就在我面前,但我对此知之甚少,所以我找不到解决方案。我已经被困了两周了。感谢您提前提供的帮助,我知道这是一个可怕的问题,但我真的很困惑。由于我是新手,因此非常感谢替换代码!
.java代码-
package washingtondeli.groupboxlunchesestimateandordering;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.TextView;
import java.text.NumberFormat;
public class CapitolhillActivity extends AppCompatActivity {
Button mButton;
EditText sand1;
EditText sand2;
EditText sand3;
EditText sand4;
EditText sand5;
EditText sand6;
EditText sand7;
EditText extra1;
EditText extra2;
EditText extra3;
EditText extra4;
EditText extra5;
EditText extra6;
TextView result1;
TextView result2;
TextView result3;
TextView result4;
TextView result5;
TextView result6;
TextView result7;
TextView extraresult1;
TextView extraresult2;
TextView extraresult3;
TextView extraresult4;
TextView extraresult5;
TextView extraresult6;
CheckBox delivery;
TextView subtotal;
TextView total;
int d;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_capitolhill);
sand1= (EditText)findViewById(R.id.sand1);
sand2= (EditText)findViewById(R.id.sand2);
sand3= (EditText)findViewById(R.id.sand3);
sand4= (EditText)findViewById(R.id.sand4);
sand5= (EditText)findViewById(R.id.sand5);
sand6= (EditText)findViewById(R.id.sand6);
sand7= (EditText)findViewById(R.id.sand7);
extra1= (EditText)findViewById(R.id.extra1);
extra2= (EditText)findViewById(R.id.extra2);
extra3= (EditText)findViewById(R.id.extra3);
extra4= (EditText)findViewById(R.id.extra4);
extra5= (EditText)findViewById(R.id.extra5);
extra6= (EditText)findViewById(R.id.extra6);
result1= (TextView)findViewById(R.id.result1);
result2= (TextView)findViewById(R.id.result2);
result3= (TextView)findViewById(R.id.result3);
result4= (TextView)findViewById(R.id.result4);
result5= (TextView)findViewById(R.id.result5);
result6= (TextView)findViewById(R.id.result6);
result7= (TextView)findViewById(R.id.result7);
extraresult1= (TextView)findViewById(R.id.extraresult1);
extraresult2= (TextView)findViewById(R.id.extraresult2);
extraresult3= (TextView)findViewById(R.id.extraresult3);
extraresult4= (TextView)findViewById(R.id.extraresult4);
extraresult5= (TextView)findViewById(R.id.extraresult5);
extraresult6= (TextView)findViewById(R.id.extraresult6);
subtotal= (TextView) findViewById(R.id.subtotal);
total= (TextView) findViewById(R.id.total);
final CheckBox delivery= (CheckBox) findViewById(R.id.checkBox);
delivery.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (delivery.isChecked()) {
d = 25;
} else {
d = 0;
}
}
});
mButton = (Button)findViewById(R.id.calc);
mButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (delivery.isChecked()) {
d = 25;
} else {
d = 0;
}
calculate2();
}
});
}
public void calculate2() {
//get entered texts from the edittexts,and convert to integers.
Integer value1 = Integer.parseInt(sand1.getText().toString());
Integer value2 = Integer.parseInt(sand2.getText().toString());
Integer value3 = Integer.parseInt(sand3.getText().toString());
Integer value4 = Integer.parseInt(sand4.getText().toString());
Integer value5 = Integer.parseInt(sand5.getText().toString());
Integer value6 = Integer.parseInt(sand6.getText().toString());
Integer value7 = Integer.parseInt(sand7.getText().toString());
Integer value8 = Integer.parseInt(extra1.getText().toString());
Integer value9 = Integer.parseInt(extra2.getText().toString());
Integer value10 = Integer.parseInt(extra3.getText().toString());
Integer value11 = Integer.parseInt(extra4.getText().toString());
Integer value12 = Integer.parseInt(extra5.getText().toString());
Integer value13 = Integer.parseInt(extra6.getText().toString());
Integer valuesubtotal = Integer.parseInt(subtotal.getText().toString());
Integer valuetotal = Integer.parseInt(total.getText().toString());
//do the calculation
Double calculatedValue1 = (9.5*value1);
Double calculatedValue2 = (9.5*value2);
Double calculatedValue3 = (9.5*value3);
Double calculatedValue4 = (9.5*value4);
Double calculatedValue5 = (9.5*value5);
Double calculatedValue6 = (9.5*value6);
Double calculatedValue7 = (9.5*value7);
Double calculatedValue8 = (2.25*value8);
Double calculatedValue9=(1.5*value9) ;
Double calculatedValue10=(3.5*value10) ;
Double calculatedValue11 =(3.95*value11) ;
Double calculatedValue12 = (3.5*value12);
Double calculatedValue13 = (2.95*value13);
Double calculatedsubtotal = (d+calculatedValue1+calculatedValue2+calculatedValue3+calculatedValue4+calculatedValue5+calculatedValue6+calculatedValue7+calculatedValue8+calculatedValue9+calculatedValue10+calculatedValue11+calculatedValue12+calculatedValue13);
Double calculatedtotal = ((.1*calculatedsubtotal)+calculatedsubtotal);
//set the value to the textview, to display on screen.
result1.setText("$"+String.format( "%.2f", calculatedValue1 ));
result2.setText("$"+ String.format( "%.2f", calculatedValue2 ));
result3.setText("$"+ String.format( "%.2f", calculatedValue3 ));
result4.setText("$"+ String.format( "%.2f", calculatedValue4 ));
result5.setText("$"+ String.format( "%.2f", calculatedValue5 ));
result6.setText("$"+ String.format( "%.2f", calculatedValue6 ));
result7.setText("$"+ String.format( "%.2f", calculatedValue7 ));
extraresult1.setText("$"+ String.format( "%.2f", calculatedValue8 ));
extraresult2.setText("$"+ String.format( "%.2f", calculatedValue9 ));
extraresult3.setText("$"+ String.format( "%.2f", calculatedValue10 ));
extraresult4.setText("$"+ String.format( "%.2f", calculatedValue11));
extraresult5.setText("$"+ String.format( "%.2f", calculatedValue12));
extraresult6.setText("$"+ String.format( "%.2f", calculatedValue13));
subtotal.setText("$"+ String.format( "%.2f", calculatedsubtotal ));
total.setText("$"+ String.format( "%.2f", calculatedtotal ));
}
}
最佳答案
在调用 (textview/editText).getText().toString() 之前,删除 $ 符号并使用 double 代替 int。
试试这个:
String total = "$10.5";
String strAmount = total.replace("$","");
double value = Double.valueOf(strAmount);
Log.e("VALUE", String.valueOf(value));
示例:
public void calculate2() {
//get entered texts from the edittexts,and convert to integers.
Double value1 = moneyToDouble(sand1.getText().toString());
Double value2 = moneyToDouble(sand2.getText().toString());
Double value3 = moneyToDouble(sand3.getText().toString());
Double value4 = moneyToDouble(sand4.getText().toString());
Double value5 = moneyToDouble(sand5.getText().toString());
Double value6 = moneyToDouble(sand6.getText().toString());
Double value7 = moneyToDouble(sand7.getText().toString());
Double value8 = moneyToDouble(extra1.getText().toString());
Double value9 = moneyToDouble(extra2.getText().toString());
Double value10 = moneyToDouble(extra3.getText().toString());
Double value11 = moneyToDouble(extra4.getText().toString());
Double value12 = moneyToDouble(extra5.getText().toString());
Double value13 = moneyToDouble(extra6.getText().toString());
Double valuesubtotal = moneyToDouble(subtotal.getText().toString());
Double valuetotal = moneyToDouble(total.getText().toString());
//do the calculation
Double calculatedValue1 = (9.5*value1);
Double calculatedValue2 = (9.5*value2);
Double calculatedValue3 = (9.5*value3);
Double calculatedValue4 = (9.5*value4);
Double calculatedValue5 = (9.5*value5);
Double calculatedValue6 = (9.5*value6);
Double calculatedValue7 = (9.5*value7);
Double calculatedValue8 = (2.25*value8);
Double calculatedValue9=(1.5*value9) ;
Double calculatedValue10=(3.5*value10) ;
Double calculatedValue11 =(3.95*value11) ;
Double calculatedValue12 = (3.5*value12);
Double calculatedValue13 = (2.95*value13);
Double calculatedsubtotal = (d+calculatedValue1+calculatedValue2+calculatedValue3+calculatedValue4+calculatedValue5+calculatedValue6+calculatedValue7+calculatedValue8+calculatedValue9+calculatedValue10+calculatedValue11+calculatedValue12+calculatedValue13);
Double calculatedtotal = ((.1*calculatedsubtotal)+calculatedsubtotal);
//set the value to the textview, to display on screen.
result1.setText("$"+String.format( "%.2f", calculatedValue1 ));
result2.setText("$"+ String.format( "%.2f", calculatedValue2 ));
result3.setText("$"+ String.format( "%.2f", calculatedValue3 ));
result4.setText("$"+ String.format( "%.2f", calculatedValue4 ));
result5.setText("$"+ String.format( "%.2f", calculatedValue5 ));
result6.setText("$"+ String.format( "%.2f", calculatedValue6 ));
result7.setText("$"+ String.format( "%.2f", calculatedValue7 ));
extraresult1.setText("$"+ String.format( "%.2f", calculatedValue8 ));
extraresult2.setText("$"+ String.format( "%.2f", calculatedValue9 ));
extraresult3.setText("$"+ String.format( "%.2f", calculatedValue10 ));
extraresult4.setText("$"+ String.format( "%.2f", calculatedValue11));
extraresult5.setText("$"+ String.format( "%.2f", calculatedValue12));
extraresult6.setText("$"+ String.format( "%.2f", calculatedValue13));
subtotal.setText("$"+ String.format( "%.2f", calculatedsubtotal ));
total.setText("$"+ String.format( "%.2f", calculatedtotal ));
}
private Double moneyToDouble(String total){
String strAmount = total.replace("$","");
double value = Double.valueOf(strAmount);
return value;
}
关于java - 应用程序崩溃了,我知道它与 "java.lang.NumberFormatException: Invalid int: "$19.0 0""(日志中)有关,但我不知道如何修复它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38246069/
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题? Update the question所以它是on-topic对于堆栈溢出。 9年前关闭。 Improve this que
我有一堆 php 脚本计划在 CentOS 机器上的 cron 中每隔几分钟运行一次。我希望每个脚本在启动时自我检查它的前一个实例是否仍在运行,如果是则停止。 最佳答案 我这样做是为了管理任务并确保它
是否有 bash 命令、程序或 libusb 函数(尽管我没有找到)来指示 USB 设备的 OUT 或 IN 端点是什么? 例如,libusb_interface_descriptor(来自 libu
我如何知道 NSTextField 何时成为第一响应者(即当用户单击它来激活它时,但在他们开始输入之前)。我尝试了 controlTextDidBeginEditing 但直到用户键入第一个字符后才会
我怎么知道我的代码何时完成循环?完成后我还得再运行一些代码,但只有当我在那里写的所有东西都完成后它才能运行。 obj.data.forEach(function(collection) {
我正在使用音频标签,我希望它能计算播放了多少次。 我的代码是这样的: ; ; ; 然后在一个javascript文件中 Var n=0; function doing(onplaying)
我正在尝试向 Package-Explorer 的项目上下文菜单添加一个子菜单。但是,我找不到该菜单的 menuid。 所以我的问题是如何在 eclipse 中找到 menuid? 非常感谢您的帮助。
我有一个名为“下一步”的按钮,它存在于几个 asp.net 页面中。实际上它是在用户控件中。单击“下一步”时,它会调用 JavaScript 中的函数 CheckServicesAndStates。我
我正在尝试在 Visual Studio 中使用 C++ 以纳秒为单位计算耗时。我做了一些测试,结果总是以 00 结尾。这是否意味着我的处理器(Ryzen 7-1800X)不支持 ~1 纳秒的分辨率,
我有一个自定义 ListView ,其中包含一些元素和一个复选框。当我点击一个按钮时。我想知道已检查的元素的位置。下面是我的代码 public class Results extends ListAc
如何在使用 J2ME 编写的应用程序中获取网络运营商名称? 我最近正在尝试在 Nokia s40 上开发一个应用程序,它应该具有对特定网络运营商的独占访问权限。有没有这样的API或库? 最佳答案 没有
我使用服务器客户端组件,当在此组件的 TransferFile 事件中接收文件时,我使用警报消息组件。所以我希望,如果用户单击警报消息,程序将继续执行 TransferFile 事件中的代码,以在单击
如果我创建一个类A具有一些属性,例如 a, b, c我创建对象 A x1; A x2; A x3; ... A xN 。有没有办法在同一个类中创建一个方法来检索我创建的所有对象?我想创建类似 stat
我正在制作一个应用程序,其中包含相同布局的 81 个按钮。它们都被称为我创建的名为“Tile”的对象。问题是这些图 block 存储在数组中,因此我需要知道以 int 格式单击了哪个按钮才能调用图 b
UIProgressView有这个setProgress:animated: API。 有没有办法确切知道动画何时停止? 我的意思是这样的? [myProgress setProgress:0.8f
我正在使用两个 jQuery 队列,我希望其中一个队列在另一个队列完成后出队。我怎么知道第一个是否完成?我应该使用第三个队列吗?! 这是我所拥有的: var $q = $({}); $q.que
jQuery 中有没有一种方法可以知道是否至少有一个复选框已被选中? 我有一个包含很多复选框的表单,每个复选框都不同。 我需要一种 jQuery 的方式来表达这样的内容,这就是逻辑: If at le
给定 2 个选择 100 50 100 在这两种情况下,我都想在 .example 中获取数字,使用相同的选择器或者以某种方式知道 .no-text 和 之间的区别。带文字 执行
我在我的应用程序中使用 System.ComponentModel.BindingList 作为 DataGridView.DataSource。该列表非常大,需要几秒钟才能绘制到 DataGridV
我想知道用户在 Android 中选择的默认键盘。我知道我可以使用 InputMethodManager 访问已启用的输入法列表,但我想知道用户当前使用的是哪一个。 到目前为止,我已经尝试获取当前的输
我是一名优秀的程序员,十分优秀!