繁体   English   中英

在Android开发中使用DecimalFormat

[英]Using DecimalFormat with Android Development

我已经研究了解决此问题的方法,但我对Java还是很陌生,只是研究它,所以我会先深入研究它并遇到问题。 我遇到的问题是我想更改我正在制作的“技巧计算器”输出的小数位数,并且我还希望它使用$符号以货币格式设置。 我的代码如下所示

public class TipCalculatorActivity extends Activity {

      DecimalFormat money = new DecimalFormat("$0.00");
      EditText costofmeal, tippercent;
      TextView tiptotal, totalbill; 
      Button calctipbtn;
      BigDecimal costNum, percentNum, billNum;

      /** Called when the activity is first created. */
      @Override
      public void onCreate(Bundle savedInstanceState) {

            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);
            calctipbtn = (Button) findViewById(R.id.calctipbtn);
            costofmeal = (EditText) findViewById(R.id.CostofMeal); 
            tippercent = (EditText) findViewById(R.id.PercentTipText);
            tiptotal = (TextView) findViewById(R.id.tiptotal);       
            totalbill = (TextView) findViewById(R.id.totalbill);   
            calctipbtn.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                // TODO Auto-generated method stub
                costNum = new BigDecimal(costofmeal.getText().toString());
                percentNum = new BigDecimal(tippercent.getText().toString());

                tiptotal.setText(costNum.multiply(percentNum).toString());
                System.out.println(money.format(tiptotal));

                costNum = new BigDecimal(costofmeal.getText().toString());
                billNum = new BigDecimal(tiptotal.getText().toString());


                totalbill.setText(costNum.add(billNum).toString());
                System.out.println(money.format(totalbill));
            }
          });   
     }
} 

我的思维方法基本上是,我可以得到等式的输出,然后可以使用money.format并调用我使用的textview ,它将其格式化为我拥有的DecimalFormat 现在,当我按下“计算”按钮时,应用程序强制关闭,我得到的日志错误是

06-04 21:32:57.242: D/AndroidRuntime(1905): Shutting down VM

06-04 21:32:57.242: W/dalvikvm(1905): threadid=1: thread exiting with uncaught exception    (group=0x40015578)

06-04 21:32:57.257: E/AndroidRuntime(1905): FATAL EXCEPTION: main

06-04 21:32:57.257: E/AndroidRuntime(1905): java.lang.IllegalArgumentException

06-04 21:32:57.257: E/AndroidRuntime(1905):     at java.text.NumberFormat.format(NumberFormat.java:308)

06-04 21:32:57.257: E/AndroidRuntime(1905):     at 
java.text.DecimalFormat.format(DecimalFormat.java:714)

06-04 21:32:57.257: E/AndroidRuntime(1905):     at java.text.Format.format(Format.java:93)

06-04 21:32:57.257: E/AndroidRuntime(1905):     at com.verge.tipcalc.TipCalculatorActivity$1.onClick(TipCalculatorActivity.java:50)

06-04 21:32:57.257: E/AndroidRuntime(1905):     at android.view.View.performClick(View.java:2537)

06-04 21:32:57.257: E/AndroidRuntime(1905):     at android.view.View$PerformClick.run(View.java:9157)

06-04 21:32:57.257: E/AndroidRuntime(1905):     at 
android.os.Handler.handleCallback(Handler.java:587)

06-04 21:32:57.257: E/AndroidRuntime(1905):     at android.os.Handler.dispatchMessage(Handler.java:92)

06-04 21:32:57.257: E/AndroidRuntime(1905):     at android.os.Looper.loop(Looper.java:130)

06-04 21:32:57.257: E/AndroidRuntime(1905):     at android.app.ActivityThread.main(ActivityThread.java:3687)

06-04 21:32:57.257: E/AndroidRuntime(1905):     at java.lang.reflect.Method.invokeNative(Native Method)

06-04 21:32:57.257: E/AndroidRuntime(1905):     at java.lang.reflect.Method.invoke(Method.java:507)

06-04 21:32:57.257: E/AndroidRuntime(1905):     at 
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:842)

06-04 21:32:57.257: E/AndroidRuntime(1905):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)

06-04 21:32:57.257: E/AndroidRuntime(1905):     at dalvik.system.NativeStart.main(Native Method)

我要做的就是将总totalbilltiptotal小数点后tiptotal到小数点后totalbill并将其tiptotal为货币格式,我尝试了3-4种方法,但都没有成功。

l您需要这样做-

DecimalFormat money = new DecimalFormat("00.00");
money.setRoundingMode(RoundingMode.UP);// you can also use DOWN here if you dont need to round up the decimal.
.
.
System.out.println(money.format(new Double(totalbill.getText())));

重要的是,我想您错过的是new Double(totalbill.getText()) 您不能直接传递totalBill,因为它是textView。 您将需要将其解析为Double或Flot,然后将其传递给formatter。

$也可以稍后添加到文本中。

totalbill.setText("$" + totalbill.getText())

你可以试试这个代码

这样转换ur BigDecimal值,使其十进制值最多为2个位

   BigDecimal bd = new BigDecimal( costNum);
   bd = bd.setScale(2, BigDecimal.ROUND_HALF_UP);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM