亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

屯留县| 沙洋县| 阜康市| 平远县| 利川市| 三门峡市| 桐城市| 缙云县| 灯塔市| 镇巴县| 茂名市| 大城县| 寻甸| 浏阳市| 绥化市| 贵定县| 深州市| 来凤县| 永胜县| 密云县| 淮北市| 北流市| 都匀市| 玛多县| 青海省| 英吉沙县| 城步| 太仆寺旗| 正蓝旗| 苏尼特左旗| 友谊县| 土默特左旗| 本溪市| 名山县| 平舆县| 特克斯县| 称多县| 龙州县| 柏乡县| 绿春县| 柳河县|