EditText输入框小写自动转大写 非监听输入模式

mac2025-03-01  2

比监听模式会好一些

et_trainCode.setTransformationMethod(new ReplacementTransformationMethod() { @Override protected char[] getOriginal() { char[] text = {'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'z', 'x', 'c', 'v', 'b', 'n', 'm'}; return text; } @Override protected char[] getReplacement() { char[] text = {'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I', 'O', 'P', 'A', 'S', 'D', 'F', 'G', 'H', 'J', 'K', 'L', 'Z', 'X', 'C', 'v', 'B', 'N', 'M'}; return text; } });
最新回复(0)