void toggleShowPassword() {
if (mEtPassword.getTransformationMethod() == HideReturnsTransformationMethod.getInstance()) {
mEtPassword.setTransformationMethod(PasswordTransformationMethod.getInstance());
} else {
mEtPassword.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
}
}
'Before 2022 > Android' 카테고리의 다른 글
도넛형 View 만들기 (0) | 2019.07.11 |
---|---|
startActivityForResult - 호출한 Activity에서 결과 값 받기 (0) | 2019.07.11 |
Dialog Full Size 및 화면 하단에 위치 시키기 (0) | 2019.06.17 |
USIM 관리 클래스 총정리(유심 체크, 번호 가져오기, 번호 포맷 통일) (0) | 2019.06.17 |
Event Bus (0) | 2019.05.20 |