欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android项目实战(五十二):控制EditText输入内容大小写转换

程序员文章站 2022-08-10 11:47:13
今日需求,EditText内容为一串字符串,要求将用户软键盘输入的小写字母在输入的时候自动转为大写字母,反之亦然。 效果如下: 第一次做该需求,原先想法: 对于afterTextChanged回调方法里,对输入的字符串进行大小写转换,结果失败,因为每次转换之后实际就再次回调该方法导致死循环。 最后解 ......

今日需求,edittext内容为一串字符串,要求将用户软键盘输入的小写字母在输入的时候自动转为大写字母,反之亦然。

 

效果如下:

Android项目实战(五十二):控制EditText输入内容大小写转换

 

第一次做该需求,原先想法:

edittext.addtextchangedlistener(new textwatcher() {
            @override
            public void beforetextchanged(charsequence s, int start, int count, int after) {
            }

            @override
            public void ontextchanged(charsequence s, int start, int before, int count) {
            }

            @override
            public void aftertextchanged(editable s) {
             // 对输入后的内容进行二次处理              
        }
        });
    

对于aftertextchanged回调方法里,对输入的字符串进行大小写转换,结果失败,因为每次转换之后实际就再次回调该方法导致死循环。

 

最后解决办法:

edittext.settransformationmethod(new replacementtransformationmethod() {
                @override
                protected char[] getoriginal() {
                    char[] originalchararr = { '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' };
                    return originalchararr;
                }

                @override
                protected char[] getreplacement() {
                    char[] replacementchararr = { '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' };
                    return replacementchararr;
                }
            });

 显而易见,该方法是对编辑框内容进行转换的操作。

 两个字符数组,分别将对应位置的原始字符转换为要求后的字符。