Android editText 设置digits 失效的原因

来源:互联网 发布:淘宝上怎么买流量 编辑:程序博客网 时间:2024/05/18 01:11

用这个来控制密码不可见:

password.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
控制密码可见:

password.setTransformationMethod(PasswordTransformationMethod.getInstance());
不会覆盖xml文件设置的digits

原创粉丝点击