EditText动态设置文本类型

来源:互联网 发布:mp6播放软件下载 编辑:程序博客网 时间:2024/06/05 00:09

设置为密码:

editText.setTransformationMethod(PasswordTransformationMethod.getInstance();

设置为文本:

editText.setTransformationMethod(null);