- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好的,我正在构建这个计算 3 个输入框的应用程序。我在使用 0 值进行一些计算时得到 NaN。
这是 main.xml
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:id="@+id/ScrollView01" >
<AbsoluteLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<EditText android:id="@+id/InputNumber01"
android:numeric="integer|decimal" android:imeOptions="actionNext"
android:textStyle="bold" android:hint="Service Call"
android:layout_x="5dip" android:layout_y="5px" android:layout_height="55dip"
android:textSize="20dip" android:layout_width="195dip"
android:selectAllOnFocus="true" android:inputType="numberDecimal"/>
<EditText android:id="@+id/InputNumber02"
android:numeric="integer|decimal" android:inputType="numberDecimal"
android:textStyle="bold" android:hint="Parts" android:layout_x="5dip"
android:layout_y="90px" android:layout_height="55dip"
android:textSize="20dip" android:layout_width="195dip"
android:selectAllOnFocus="true" android:imeOptions="actionNext"/>
<EditText android:id="@+id/InputNumber03" android:numeric="integer|decimal"
android:inputType="numberDecimal" android:textStyle="bold"
android:hint="Labor" android:layout_x="5dip" android:layout_y="175px"
android:layout_height="55dip" android:textSize="20dip"
android:layout_width="195dip" android:selectAllOnFocus="true"
android:imeOptions="actionDone"/>
<Button android:text="Calculate" android:id="@+id/actionButton"
android:textStyle="bold" android:layout_height="50dip"
android:layout_width="fill_parent" android:layout_y="300px"
android:textSize="15dip" />
<TextView android:id="@+id/TextResult" android:layout_height="wrap_content"
android:numeric="integer|decimal" android:textStyle="bold"
android:layout_width="85dip" android:layout_x="225dip"
android:layout_y="175dip" android:gravity="left" android:textSize="18dip"
android:textColor="#1d9ee2" />
<TextView android:layout_height="wrap_content" android:id="@+id/TextView04"
android:text="Total:" android:textStyle="bold" android:gravity="right"
android:layout_width="55dip" android:layout_y="175dip"
android:layout_x="165dip" android:textSize="18dip" />
<TextView android:layout_height="wrap_content" android:id="@+id/TextView05"
android:text="Total Labor:" android:layout_y="260dip"
android:layout_width="95dip" android:layout_x="5dip" android:gravity="right" />
<TextView android:text="@+id/TotalLabor"
android:layout_height="wrap_content" android:layout_width="wrap_content"
android:id="@+id/TotalLabor" android:layout_y="260dip"
android:layout_x="110dip" />
<TextView android:layout_height="wrap_content" android:id="@+id/TextView06"
android:layout_x="5dip" android:text="Total Services:"
android:layout_y="280dip" android:layout_width="95dip"
android:gravity="right" />
<TextView android:layout_height="wrap_content"
android:layout_width="wrap_content" android:id="@+id/TotalServices"
android:text="@+id/TotalServices" android:layout_y="280dip"
android:layout_x="110dip" />
<TextView android:id="@+id/TextView07" android:text="SC Tax %:"
android:layout_y="300dip" android:layout_height="wrap_content"
android:layout_x="5dip" android:layout_width="95dip" android:gravity="right" />
<TextView android:text="@+id/TextView08"
android:layout_height="wrap_content" android:layout_width="wrap_content"
android:id="@+id/SCTaxPercent" android:layout_y="300dip"
android:layout_x="110dip" />
<TextView android:layout_height="wrap_content" android:id="@+id/TextView08"
android:text="Sales Tax:" android:textStyle="bold" android:layout_y="175dip"
android:layout_x="5dip" android:textSize="18dip"
android:layout_width="wrap_content" android:gravity="right" />
<TextView android:layout_height="wrap_content" android:id="@+id/SalesTax"
android:textStyle="bold" android:numeric="integer|decimal"
android:layout_y="175dip" android:gravity="left"
android:layout_width="65dip" android:textSize="18dip"
android:layout_x="100dip" />
<TextView android:layout_height="wrap_content" android:id="@+id/TextView09"
android:text="SC Taxable:" android:layout_y="320dip"
android:layout_x="5dip" android:layout_width="95dip" android:gravity="right" />
<TextView android:layout_height="wrap_content" android:text="@+id/TextView10"
android:layout_width="wrap_content" android:id="@+id/ScTaxable"
android:layout_y="320dip" android:layout_x="110dip" />
<TextView android:layout_height="wrap_content" android:id="@+id/TextView10"
android:text="Taxable:" android:layout_y="340dip"
android:layout_width="95dip" android:layout_x="5dip" android:gravity="right" />
<TextView android:layout_height="wrap_content" android:text="@+id/TextView11"
android:layout_width="wrap_content" android:id="@+id/Taxable"
android:layout_y="340dip" android:layout_x="110dip" />
<EditText android:layout_height="wrap_content" android:text="9.50"
android:layout_width="90dip" android:id="@+id/SalesTaxValue"
android:layout_x="5dip" android:layout_y="430dip" android:numeric="integer|decimal"
android:selectAllOnFocus="true" />
<TextView android:layout_height="wrap_content" android:id="@+id/TextView01"
android:layout_width="wrap_content" android:layout_x="5dip"
android:text="Sales Tax Value:" android:layout_y="407dip" />
</AbsoluteLayout>
</ScrollView>
这是计算器.java
package com.Eddie.TaxCalculator;
import java.text.NumberFormat;
import com.Eddie.TaxCalculator.R;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.WindowManager;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
public class Calculator extends Activity {
private Button calculateButton;
private EditText inputField01;
private EditText inputField02;
private EditText inputField03;
private EditText salesTaxValue;
private double serviceCall;
private double parts;
private double labor;
private double salestaxvalue;
String zero ="0";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
calculateButton = (Button) findViewById(R.id.actionButton);
calculateButton.setOnClickListener(doSomethingNow);
this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
}
private OnClickListener doSomethingNow = new OnClickListener() {
public void onClick(View arg0) {
inputField01 = (EditText) findViewById(R.id.InputNumber01);
inputField02 = (EditText) findViewById(R.id.InputNumber02);
inputField03 = (EditText) findViewById(R.id.InputNumber03);
salesTaxValue = (EditText) findViewById(R.id.SalesTaxValue);
if (inputField01.getText().toString().length()==0)
{
inputField01.setText(zero);
Toast toast = Toast.makeText(getApplicationContext(),
"Service Call TextBox was empty.",
Toast.LENGTH_LONG);
toast.show();
}
if(inputField02.getText().toString().length()==0)
{
inputField02.setText(zero);
Toast toast = Toast.makeText(getApplicationContext(),
"Parts TextBox was empty.",
Toast.LENGTH_LONG);
toast.show();
}
if(inputField03.getText().toString().length()==0)
{
inputField03.setText(zero);
Toast toast = Toast.makeText(getApplicationContext(),
"Labor TextBox was empty.",
Toast.LENGTH_LONG);
toast.show();
}
//service Call is 0
if (inputField01.getText().toString().equals("0"))
{
Toast toast = Toast.makeText(getApplicationContext(),
"Service Call TextBox value is 0.",
Toast.LENGTH_SHORT);
//toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.show();
}
//Parts is 0
if (inputField02.getText().toString().equals("0"))
{
//inputField01.setText("10");
Toast toast = Toast.makeText(getApplicationContext(),
"Parts TextBox value is 0.",
Toast.LENGTH_SHORT);
toast.show();
}
//Labor is 0
if (inputField03.getText().toString().equals("0"))
{
//inputField01.setText("10");
Toast toast = Toast.makeText(getApplicationContext(),
"Labor TextBox value is 0.",
Toast.LENGTH_SHORT);
toast.show();
}
serviceCall = Double.parseDouble(inputField01.getText().toString());
parts = Double.parseDouble(inputField02.getText().toString());
labor = Double.parseDouble(inputField03.getText().toString());
salestaxvalue = Double.parseDouble(salesTaxValue.getText().toString());
NumberFormat numberFormat = NumberFormat.getInstance();
numberFormat.setMaximumFractionDigits(2);
numberFormat.setGroupingUsed(false);
TextView totalLabor = (TextView)findViewById(R.id.TotalLabor);
Double totalLaborResults = serviceCall + labor;
String totalLaborCalcInt = numberFormat.format(totalLaborResults).toString();
totalLabor.setText (totalLaborCalcInt);
TextView totalServices = (TextView)findViewById(R.id.TotalServices);
Double totalServicesResults = (parts + labor);
String totalServicesCalcInt = numberFormat.format(totalServicesResults);
totalServices.setText (totalServicesCalcInt);
TextView servicecallTaxpercent = (TextView)findViewById(R.id.SCTaxPercent);
Double scTaxPercentResults = (parts / totalServicesResults);
String serviceCallPercentCalcInt = numberFormat.format(scTaxPercentResults).toString();
servicecallTaxpercent.setText (serviceCallPercentCalcInt);
TextView scTaxable = (TextView)findViewById(R.id.ScTaxable);
Double scTaxableResults = (serviceCall * scTaxPercentResults);
String serviceCallTaxableCalcInt =numberFormat.format (scTaxableResults).toString();
scTaxable.setText (serviceCallTaxableCalcInt);
TextView taxable = (TextView)findViewById(R.id.Taxable);
Double taxableResults = (parts + scTaxableResults);
String taxableCalcInt =numberFormat.format (taxableResults).toString();
taxable.setText (taxableCalcInt);
TextView salesTax = (TextView)findViewById(R.id.SalesTax);
Double salesTaxResults = (taxableResults * salestaxvalue) /100;
String salesTaxCalcInt = numberFormat.format (salesTaxResults).toString();
salesTax.setText (salesTaxCalcInt);
TextView textResult = (TextView)findViewById(R.id.Total);
Double additionResults = (salesTaxResults + parts+ serviceCall + labor);
String TotalCalcInt = numberFormat.format(additionResults).toString();
textResult.setText (TotalCalcInt);
}
};
};
当在输入 1(服务调用)中输入数字并在其他两个输入中输入零时,我得到 NaN Total。
如果所有输入框均为零值,我还会得到 NaN 总计、NaN 销售税、NaN scTax % textview(sc 缺少服务调用)NaN scTaxable,NaN 应税。
任何人都可以帮我找到这个,但我已经尝试了两周了。请帮忙。
最佳答案
问题肯定是使用零 (0) 值作为输入...
尽管如此,我看到你试图用
捕获此类实例xxxx.getText().toString().equals("0")
1) 这不是检查零的好方法...想象一下如果我输入 00
或 000
会发生什么......
2) 显示 Toast
后,您可以继续进行计算 无论如何...使用 if- else
分支逻辑以避免值为零时的计算。
要正确检查零...您需要将其解析为数据类型(在您的情况下是Double
),然后检查其值...
祝你好运,干杯!
关于java - 不知道如何摆脱 NaN,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4544068/
关闭。这个问题是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 访问已启用的输入法列表,但我想知道用户当前使用的是哪一个。 到目前为止,我已经尝试获取当前的输
我是一名优秀的程序员,十分优秀!