Edittext输入的内容显示和隐藏

if (isShow) {//显示
editText.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
} else {//隐藏
editText.setTransformationMethod(PasswordTransformationMethod.getInstance());
}

你可能感兴趣的:(Edittext输入的内容显示和隐藏)