今天剛好做了一個登陸框密碼的顯示和隱藏,東西肯定很簡單麦撵,但還是記錄一下吧!關鍵就兩個api 如下:
<code>
//設置密碼可見
password_et.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
//設置密碼不可見
password_et.setTransformationMethod(PasswordTransformationMethod.getInstance());
</code>
在處理一些邏輯就可以了课幕。