Android If user enters the uppercase also it should be in lowercase
IF user enters the characters in uppercase also it sh开发者_运维技巧ould display in lowercase only Regards, Nikhilreddy
You can use this:
String s = textView.getText().toString().toLowerCase();
精彩评论