Before 2022/Android

EditText 비밀번호 보이기/숨기기

Eljoe 2019. 7. 11. 10:29
void toggleShowPassword() {
  if (mEtPassword.getTransformationMethod() == HideReturnsTransformationMethod.getInstance()) {
  	mEtPassword.setTransformationMethod(PasswordTransformationMethod.getInstance());
  } else {
  	mEtPassword.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
  }
}