1、设置可见
et.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
2、设置不可见
et.setTransformationMethod(PasswordTransformationMethod.getInstance());
3、设置成功后 把光标放在最后
et.setSelection(et.getText().length());
注意:Android低版本可以输入中文,高版本才修复了这个bug。我看支付宝上面也能输入中文,一直不晓得怎么解决
本文介绍如何在Android中通过HideReturnsTransformationMethod和PasswordTransformationMethod切换输入框的可见性,包括设置输入框为可见和不可见状态的方法,并提及了在不同Android版本下输入中文的兼容性问题。
950

被折叠的 条评论
为什么被折叠?



