When I use the setFilter method for EditText to handle special characters, the maxLength property does not work as expected. My code is below.
editName = (EditText)findViewById(R.id.rna_editTextName); editName.setFilters(new InputFilter[]{getFilteredChars()}); //Below method returns filtered characters. public InputFilter getFilteredChars() { InputFilter filter = new InputFilter() { @Override public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) { if (end > start) { char[] acceptedChars = new char[]{'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', ' ' ,'.', '\''}; for (int index = start; index < end; index++) { if (!new String(acceptedChars).contains(String.valueOf(source.charAt(index)))) { return ""; } } } return null; } }; return filter; }