91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

南雄市| 文安县| 涿鹿县| 阿瓦提县| 新安县| 库车县| 临湘市| 涟水县| 静乐县| 兖州市| 怀来县| 神农架林区| 红桥区| 定南县| 石林| 静乐县| 萨嘎县| 亳州市| 新平| 长岛县| 鹿泉市| 宾川县| 永寿县| 肇东市| 太白县| 葵青区| 嵩明县| 许昌市| 昌图县| 历史| 若尔盖县| 安丘市| 包头市| 龙州县| 余姚市| 山丹县| 漳平市| 大理市| 论坛| 永修县| 墨玉县|