Edittext只允许字母(以编程方式)

问题描述 投票:0回答:2

我正在尝试获得一个只允许字母(大写和小写)的editTextview。

它适用于以下代码:

 edittv.setKeyListener(DigitsKeyListener.getInstance("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"));

问题是我得到了这样的数字键盘:

keyboard example

要回到普通键盘,我发现了这段代码:

edittv.setKeyListener(DigitsKeyListener.getInstance("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"));
edittv.setInputType(InputType.TYPE_CLASS_TEXT);

它可以用来取回键盘,但是再次允许所有字符,所以它取消了以前的代码。

那么,我怎样才能以编程方式允许使用字母键盘的字母。

java android android-edittext keyboard
2个回答
4
投票

您可以使用以下代码:

InputFilter filter = new InputFilter() {
public CharSequence filter(CharSequence source, int start, int end,
        Spanned dest, int dstart, int dend) {
    for (int i = start; i < end; i++) {
        if (!Character.isLetter(source.charAt(i))&&!Character.isSpaceChar(source.charAt(i))) {
            return "";
        }
    }
    return null;
}
};
edit.setFilters(new InputFilter[] { filter });

1
投票

在这里你使用DigitsKeyListener扩展NumberKeyListener只允许数字,这就是你得到错误的原因。

以下是我的解决方案,在XML中使用这一行。

  <EditText
        android:id="@+id/edt_username"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="Username"
        android:digits="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ "/>

注意: - 在数字末尾给出空格,以便让用户输入空间

以编程方式: -

    edittv.setInputType(InputType.TYPE_CLASS_TEXT);
    edittv.setFilters(new InputFilter[]{
            new InputFilter() {
                public CharSequence filter(CharSequence src, int start,
                                           int end, Spanned dst, int dstart, int dend) {
                    if (src.equals("")) {
                        return src;
                    }
                    if (src.toString().matches("[a-zA-Z ]+")) {
                        return src;
                    }
                    return "";
                }
            }
    });
© www.soinside.com 2019 - 2024. All rights reserved.