String number = textView1.getText().toString();
double amount = Double.parseDouble(number);
DecimalFormat formatter = new DecimalFormat("#,###.00");
String formatted = formatter.format(amount);
textView1.setText(formatted);
我正在使用此代碼讓它在我的應用程序的textview中添加逗號。但是當我運行我的應用程序時,它什麼都沒有?我在這裏做錯了什麼?如何讓Android自動添加逗號?
你是什麼意思它也絕對沒有什麼? –
我運行該應用程序。數字看起來像:123456789 - no commas –
當你記錄字符串時會發生什麼? –