您好,登錄后才能下訂單哦!
要在Android中實現EditText密碼隱藏顯示,你可以使用以下方法:
<EditText
android:id="@+id/editTextPassword"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:hint="請輸入密碼" />
這里,android:inputType="textPassword"
屬性將密碼字符顯示為隱藏符號(如?)。
如果你想實現一個自定義的密碼顯示/隱藏功能,而不是使用默認的Android屬性,你可以監聽EditText的文本更改事件,并在用戶輸入時切換密碼字符的顯示。
Java示例:
EditText editTextPassword = findViewById(R.id.editTextPassword);
editTextPassword.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
if (!s.toString().isEmpty()) {
editTextPassword.setCompoundDrawablesWithIntrinsicBounds(null, null, getResources().getDrawable(R.drawable.ic_eye_off), null);
} else {
editTextPassword.setCompoundDrawablesWithIntrinsicBounds(null, null, getResources().getDrawable(R.drawable.ic_eye_on), null);
}
}
});
Kotlin示例:
val editTextPassword = findViewById<EditText>(R.id.editTextPassword)
editTextPassword.addTextChangedListener(object : TextWatcher {
override fun beforeTextChanged(s: CharSequence, start: Int, count: Int, after: Int) {
}
override fun onTextChanged(s: CharSequence, start: Int, before: Int, count: Int) {
}
override fun afterTextChanged(s: Editable) {
if (s.toString().isNotEmpty()) {
editTextPassword.setCompoundDrawablesWithIntrinsicBounds(null, null, resources.getDrawable(R.drawable.ic_eye_off), null)
} else {
editTextPassword.setCompoundDrawablesWithIntrinsicBounds(null, null, resources.getDrawable(R.drawable.ic_eye_on), null)
}
}
})
這里,我們使用addTextChangedListener
方法添加了一個TextWatcher
,在用戶輸入密碼時切換密碼字符的顯示。我們使用setCompoundDrawablesWithIntrinsicBounds
方法分別設置了眼睛圖標(開和關)作為密碼顯示/隱藏的切換。
注意:確保在你的項目中添加了眼睛圖標的資源文件(如ic_eye_on
和ic_eye_off
)。你可以使用Android Studio的內置圖標生成器或從其他來源添加這些圖標。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。