其中一个方法
调用EditText对象的setTransformationMethod()方法
//对编辑框内容进行转换的操作,小写换成大写
mEdit.setTransformationMethod(new TransInformation());
/**
* 小写字母自动转化为大写
*/
public static class TransInformation extends ReplacementTransformationMethod {
/**
* 原本输入的小写字母
*/
@Override
protected char[] getOriginal() {
return 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'};
}
/**
* 替代为大写字母
*/
@Override
protected char[] getReplacement() {
return 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'};
}
}
注意:这种方法只是给显示给用户是大写,实质上直接获取的时候还是小写
所以如果需要大写,需要转换
mEdit.getText().toString().toUpperCase()