安卓显示隐藏密码
2021-11-11 本文已影响0人
程序猿的小生活
if (ishidepass) {//当前隐藏 点击后不隐藏
mPasswordText.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
} else {//当前不隐藏 点击后隐藏
mPasswordText.setTransformationMethod(PasswordTransformationMethod.getInstance());
}