标签: android android-edittext maxlength android-input-filter
我有一个EditText,我想将maxLength设置为四个数字(范围在-9999到9999之间)。问题是如果我在xml中设置android:maxLength="4"我可以在那里写e.q“9999”但由于长度(5个字符)它不接受“-9999”。有没有机会如何解决它(以编程方式或无论如何)
android:maxLength="4"
由于