Android EditText limit input case, uppercase to lowercase

Source: Internet
Author: User

When writing login verification, you need to convert the uppercase characters entered by the user into lowercase. Looking at the API, only inputfilter.allcaps is converting the lowercase English characters of edittext to uppercase. All right. Rely on AllCaps to write a similar inputfilter. Basically copy AllCaps's code, changed only two lines. Let's see the code.

Import Android.text.InputFilter;

Import android.text.SpannableString;
Import android.text.Spanned;
Import Android.text.TextUtils;
Contrary to Inputfilter.allcaps
public class Lowinputfilter implements Inputfilter {


@Override
Public charsequence Filter (charsequence source, int start, int end,
spanned dest, int dstart, int dend) {
for (int i = start; i < end; i++) {
if (Character.isuppercase (Source.charat (i))) {
char[] v = new Char[end-start];
Textutils.getchars (source, start, end, V, 0);
string s = new String (v). toLowerCase ();


if (source instanceof spanned) {
Spannablestring sp = new spannablestring (s);
Textutils.copyspansfrom ((spanned) source, start, end, NULL,
SP, 0);
return SP;
} else {
return s;
}
}
}

return null; Keep Original
}


}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.