我想要完成同样的任务有很多答案,甚至在我的案例中找不到任何有用的解决方案
我见过
问题1 - 问题在于添加逗号计数"." (DOT)也作为数值.
问题2 - 问题是它在文本被更改时没有显示它的结果
问题3 - 问题是在第15个字母后连续添加0.
还有更多问题和答案,
但是我找不到任何符合千分离器一般要求的东西.
是否有任何有用的提示可以帮助我在文本更改时顺利添加千位分隔符,并对小数点后的数字作为计算器进行不同的处理?
我会感激任何帮助.
我遇到了同样的问题,并为完成任务进行了大量研究以获得正确的结果.所以我终于解决了我们正在搜索的问题,并且我正在为您提供我的代码,这些代码将帮助您过多并满足您的要求.
你可以直接在我们自己的类中复制我的代码,它是完全经过测试的
以下代码的详细说明
将千位分隔符作为文本内部更改EditText
.
在按下句点(.)时自动加0.
在Beginning处忽略0输入.
类名:NumberTextWatcherForThousand
实现TextWatcher
import android.text.Editable; import android.text.TextWatcher; import android.widget.EditText; import java.util.StringTokenizer; /** * Created by Shreekrishna on 12/14/2014. */ public class NumberTextWatcherForThousand implements TextWatcher { EditText editText; public NumberTextWatcherForThousand(EditText editText) { this.editText = editText; } @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) { } @Override public void onTextChanged(CharSequence s, int start, int before, int count) { } @Override public void afterTextChanged(Editable s) { try { editText.removeTextChangedListener(this); String value = editText.getText().toString(); if (value != null && !value.equals("")) { if(value.startsWith(".")){ editText.setText("0."); } if(value.startsWith("0") && !value.startsWith("0.")){ editText.setText(""); } String str = editText.getText().toString().replaceAll(",", ""); if (!value.equals("")) editText.setText(getDecimalFormattedString(str)); editText.setSelection(editText.getText().toString().length()); } editText.addTextChangedListener(this); return; } catch (Exception ex) { ex.printStackTrace(); editText.addTextChangedListener(this); } } public static String getDecimalFormattedString(String value) { StringTokenizer lst = new StringTokenizer(value, "."); String str1 = value; String str2 = ""; if (lst.countTokens() > 1) { str1 = lst.nextToken(); str2 = lst.nextToken(); } String str3 = ""; int i = 0; int j = -1 + str1.length(); if (str1.charAt( -1 + str1.length()) == '.') { j--; str3 = "."; } for (int k = j;; k--) { if (k < 0) { if (str2.length() > 0) str3 = str3 + "." + str2; return str3; } if (i == 3) { str3 = "," + str3; i = 0; } str3 = str1.charAt(k) + str3; i++; } } public static String trimCommaOfString(String string) { // String returnString; if(string.contains(",")){ return string.replace(",","");} else { return string; } } }
在EditText上使用此类,如下所示
editText.addTextChangedListener(new NumberTextWatcherForThousand(editText));
将输入作为纯文本输入为 Double
trimCommaOfString
像这样使用相同类的方法
NumberTextWatcherForThousand.trimCommaOfString(editText.getText().toString());