中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

EditText實現密碼隱藏顯示的秘密

發布時間:2024-08-31 17:35:26 來源:億速云 閱讀:110 作者:小樊 欄目:移動開發

要在Android中實現EditText密碼隱藏顯示,你可以使用以下方法:

  1. 在XML布局文件中設置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代碼中處理文本更改事件:

如果你想實現一個自定義的密碼顯示/隱藏功能,而不是使用默認的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_onic_eye_off)。你可以使用Android Studio的內置圖標生成器或從其他來源添加這些圖標。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彭阳县| 洪江市| 新巴尔虎右旗| 漠河县| 固镇县| 盐池县| 河东区| 靖宇县| 启东市| 上蔡县| 兴化市| 交城县| 庆安县| 海林市| 广宁县| 高青县| 沈丘县| 民和| 永福县| 东乡| 鄂托克前旗| 霍林郭勒市| 交口县| 崇左市| 乌拉特中旗| 新丰县| 时尚| 嵊州市| 大新县| 普陀区| 新密市| 潞城市| 全南县| 上思县| 札达县| 邳州市| 巩义市| 平阳县| 鄂尔多斯市| 牡丹江市| 同江市|