비밀번호 입력할때 내가 입력한 비밀번호의 마지막 자리를 항상 보여주고 싶은데요..

 

기기에 시스템설정 - 장소 및 보안(위치 및 보안) - 비밀번호 표시에 체크를 하게되면

보여주고 안하게되면 비밀번호 끝자리가 안보이거든요..

 

인터넷 찾아보니 비밀번호 끝자리가 보이게하려면

 <EditText
android:inputType="text"
android:hint="아이디"
android:password="true" // 비밀번호 형식으로 보이기
android:imeOptions="actionSearch" // 마지막 한글자 보여주기
android:singleLine="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>