手记

Android 实现显示密码和隐藏密码

开发中遇到了这个问题,特此记录下。

效果图:

代码:

[代码]java代码:

?

1
2
3
4
5
6
7
8
if (!isshowpwd) {
                    isshowpwd = true;
                    etNormalPwd.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
                } else {
                    //否则隐藏密码
                    isshowpwd = false;
                    etNormalPwd.setTransformationMethod(PasswordTransformationMethod.getInstance());
                }

功能实现了,但是有个问题。每次点击后,光标会定位到密码的首位,所以还需要设置光标位置:

[代码]java代码:

?

1
etNormalPwd.setSelection(getTV(etNormalPwd).length());

[代码]java代码:

?

1
2
3
public String getTV(TextView tv) {
       return tv == null ? "" : tv.getText().toString();
   }

原文链接:http://www.apkbus.com/blog-625356-62437.html

0人推荐
随时随地看视频
慕课网APP