当我在setFilter
上使用EditText
方法处理特殊字符时,maxLength
属性未按预期工作。我的代码如下。
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;
}
答案 0 :(得分:14)
这是因为maxLength
属性会在InputFilter
上设置EditText
。通过调用EditText.setFilters(new InputFilter[] {<YOUR_FILTER>})
,您将覆盖所有现有的InputFilters,包括maxLength
使用的那个。
要解决此问题,请复制EditText.getFilters()
返回的数组并将其添加到其中:
InputFilter[] editFilters = edit.getFilters();
InputFilter[] newFilters = new InputFilter[editFilters.length + 1];
System.arraycopy(editFilters, 0, newFilters, 0, editFilters.length);
newFilters[editFilters.length] = <YOUR_FILTER>;
edit.setFilters(newFilters);
答案 1 :(得分:3)
试试这段代码。基于@Jozua回答
/**
* Adds filter to EditText preserving other filters.
*
* @param editText
* @param filter
*/
public static void setFilter(EditText editText, InputFilter filter) {
InputFilter curFilters[] = editText.getFilters();
if (curFilters != null) {
InputFilter newFilters[] = new InputFilter[curFilters.length + 1];
System.arraycopy(curFilters, 0, newFilters, 0, curFilters.length);
newFilters[curFilters.length] = filter;
editText.setFilters(newFilters);
} else {
editText.setFilters(new InputFilter[] { filter });
}
}
答案 2 :(得分:1)
您可以在阵列中添加多个过滤器。 像editText中的最大字符限制和特殊字符过滤器一样。
editText.setFilters(new InputFilter [] {new InputFilter.LengthFilter(MAX_CHARACTER_LIMIT),SpecialCharacterInputFilter});
答案 3 :(得分:0)
以编程方式设置edittext的maxlenth属性
请显示使用代码。
狂野猜测:问题可能是您在布局中设置了maxLength。通过调用setFilters(),这个行为将由您的过滤器替换。
解决方案: 在getFilteredChars()过滤器中使用多个过滤器或实现maxLenght行为。
编辑: 你可能想看看http://developer.android.com/reference/android/text/InputFilter.LengthFilter.html
并在评论中提问你, 来自doc:
when the buffer is going to replace the range dstart … dend of dest with the new text from the range start … end of source
所以,像(伪代码liveCoding):
dest.lenght - (dend-dstart) + (end-start) = new legnth