溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

EditText實(shí)現(xiàn)密碼隱藏顯示的秘密

發(fā)布時(shí)間:2024-08-31 17:35:26 來源:億速云 閱讀:101 作者:小樊 欄目:移動開發(fā)

要在Android中實(shí)現(xiàn)EditText密碼隱藏顯示,你可以使用以下方法:

  1. 在XML布局文件中設(shè)置EditText的屬性:
<EditText
    android:id="@+id/editTextPassword"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inputType="textPassword"
    android:hint="請輸入密碼" />

這里,android:inputType="textPassword"屬性將密碼字符顯示為隱藏符號(如?)。

  1. 在Java或Kotlin代碼中處理文本更改事件:

如果你想實(shí)現(xiàn)一個(gè)自定義的密碼顯示/隱藏功能,而不是使用默認(rèn)的Android屬性,你可以監(jiān)聽EditText的文本更改事件,并在用戶輸入時(shí)切換密碼字符的顯示。

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方法添加了一個(gè)TextWatcher,在用戶輸入密碼時(shí)切換密碼字符的顯示。我們使用setCompoundDrawablesWithIntrinsicBounds方法分別設(shè)置了眼睛圖標(biāo)(開和關(guān))作為密碼顯示/隱藏的切換。

注意:確保在你的項(xiàng)目中添加了眼睛圖標(biāo)的資源文件(如ic_eye_onic_eye_off)。你可以使用Android Studio的內(nèi)置圖標(biāo)生成器或從其他來源添加這些圖標(biāo)。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI