I want to restrict the edittext input to -99.99. But my inputfilter prevents me to enter "-". Could you guys help me to check what's wrong with it.
private int min, max;
public InputFilterMinMax(int min, int max) {
this.min = min;
this.max = max;
}
public InputFilterMinMax(String min, String max) {
this.min = Integer.parseInt(min);
this.max = Integer.parseInt(max);
}
@Override
public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {
try {
double input = Double.valueOf(dest.toString() + source.toString());
if (isInRange(min, max, input))
return null;
} catch (NumberFormatException nfe) { }
return "";
}
private boolean isInRange(int a, int b, double c) {
return b > a ? c >= a && c <= b : c >= b && c <= a;
}
mainactivity
text.setFilters(new InputFilter[]{new InputFilterMinMax("-99", "99")});
xml
android:inputType="numberDecimal|numberSigned"
android:digits="0123456789+-."
thanks :)
Try this!
Min max filter
set your edit text's filter with minmax filter
BTW, this is my first answer in stackoverflow. So i'am sorry if this answer is so ugly.