如何将Edittext限制为android中的某些特定字符?

时间:2013-06-14 17:17:39

标签: android

searchEdit.setKeyListener(DigitsKeyListener.getInstance("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 &"));

我使用上面的语句将我的edittext限制为某些字符,它在我的Motorolo(Android 2.3)中运行良好,但它在Google nexus中显示数字键盘。

请提供解决方案。

2 个答案:

答案 0 :(得分:6)

首先尝试添加android:digits="abcde.....012345789"属性。尽管android:digits指定它是一个数字字段,但它也接受字母。

试试这段代码..

t1 = (EditText)findViewById(R.id.text);

    t1.setFilters(new InputFilter[] {
            new InputFilter() {
                public CharSequence filter(CharSequence src, int start,
                        int end, Spanned dst, int dstart, int dend) {

                    if(src.equals("")){ // for backspace
                        return src;
                    }
                    if(src.toString().matches("[a-zA-Z0-9 ]*")) //put your constraints here
                    {
                        return src;
                    }
                    return "";
                }
            }
        }); 

请参阅This Link

中的有用示例

答案 1 :(得分:3)

尝试更改监听器的过滤方法:

InputFilter[] filters = new InputFilter[1];
filters[0] = 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',
                    '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '&', ' '};

            for (int index = start; index < end; index++) {                                         
                if (!new String(acceptedChars).contains(String.valueOf(source.charAt(index)))) { 
                    return ""; 
                }               
            }
        }
        return null;
    }

};
searchEdit.setFilters(filters);