gpt4 book ai didi

android - 使用 setFilters 时,EditText maxLength 属性未正确应用

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:51:33 26 4
gpt4 key购买 nike

当我在 EditText 上使用 setFilter 方法来处理特殊字符时,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;
}

最佳答案

这是因为 maxLength属性设置一个 InputFilter在你的 EditText .调用EditText.setFilters(new InputFilter[] {<YOUR_FILTER>})您正在覆盖所有现有的 InputFilters,包括 maxLength 使用的 InputFilters .

要解决此问题,请复制 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);

关于android - 使用 setFilters 时,EditText maxLength 属性未正确应用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12316752/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com