我现在已经做了很长一段时间了,但是我不能完成它。我的问题是我有一个EditText,我希望用户能够输入一个十进制数字(例如3,95或3.95)。我将inputType设置为numberDecimal,并尝试将数字限制为" 0123456789,。"但它要么不让用户输入逗号,要么让用户输入它们的负载。我希望用户只能输入一个分隔符(无论是"。"或",")。任何人都可以帮我这个吗?
答案 0 :(得分:1)
首先根据区域设置获取分隔符。
DecimalFormat format = (DecimalFormat)
DecimalFormat.getInstance(Locale.getDefault());
DecimalFormatSymbols symbols=format.getDecimalFormatSymbols();
defaultSeperator=Character.toString(symbols.getDecimalSeparator());
然后,设置textwatcher以进行限制。
editText.addTextChangedListener(new TextWatcher() {
public void afterTextChanged(Editable editable) {
if(editable.toString().contains(defaultSeperator))
editText.setKeyListener(DigitsKeyListener.getInstance("0123456789"));
else
editText.setKeyListener(DigitsKeyListener.getInstance("0123456789" + defaultSeperator));
}
}
答案 1 :(得分:1)
实时检查格式。
1. replace , => .
2. cast to double
if casting fails, go back to backuped string.
在布局xml:
<EditText
android:id="@+id/editText"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:inputType="numberDecimal"
android:digits="0123456789.,"/>
在java
final EditText editText = (EditText) findViewById(R.id.editText);
editText.addTextChangedListener(new TextWatcher() {
String sBackup;
@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 editable) {
double value;
try {
if (editable.toString().equals("") == false) {
value = Double.valueOf(editable.toString().replace(',', '.'));
sBackup = editable.toString();
}
} catch (Exception e) {
editText.setText(sBackup);
editText.setSelection(editText.getText().toString().length());
}
}
});
答案 2 :(得分:0)
您需要在编辑文本上设置输入过滤器。
public static InputFilter getFilter() {
return new InputFilter() {
@Override
public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {
for (int index = start; index < end; index++) {
// Filter here
}
return null;
}
};
}
et_Txt.setFilters(new InputFilter[]{getFilter()});
然后根据您的要求验证每个字符输入。