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

溫馨提示×

溫馨提示×

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

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

EditText的密碼隱藏與顯示切換

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

可以通過設置EditText的inputType屬性來實現密碼的隱藏與顯示切換。當inputType設置為"textPassword"時,密碼會顯示為隱藏的圓點;當inputType設置為"textVisiblePassword"時,密碼會顯示為明文。

示例代碼如下所示:

<EditText
    android:id="@+id/passwordEditText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inputType="textPassword"
    android:hint="Password"/>

<Button
    android:id="@+id/showHideButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Show/Hide Password"/>
Button showHideButton = findViewById(R.id.showHideButton);
showHideButton.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        EditText passwordEditText = findViewById(R.id.passwordEditText);
        
        if (passwordEditText.getInputType() == InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD) {
            passwordEditText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
        } else {
            passwordEditText.setInputType(InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD);
        }
        
        // 將光標移動到末尾
        passwordEditText.setSelection(passwordEditText.getText().length());
    }
});

以上代碼中,通過點擊按鈕來切換密碼的顯示方式。當密碼為明文時,點擊按鈕后會變為隱藏的圓點;當密碼為隱藏的圓點時,點擊按鈕后會變為明文。

向AI問一下細節

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

AI

张家港市| 嘉义市| 瑞昌市| 通道| 措美县| 凯里市| 明光市| 内丘县| 白玉县| 梅州市| 长宁区| 平塘县| 苍南县| 长垣县| 冀州市| 蓬莱市| 玛沁县| 仪征市| 聂拉木县| 惠安县| 钟山县| 东城区| 贺兰县| 新闻| 玉龙| SHOW| 宣化县| 那坡县| 巴东县| 和林格尔县| 新密市| 凤阳县| 东丽区| 信宜市| 大安市| 将乐县| 长宁县| 龙海市| 新丰县| 乌什县| 高安市|