1. 程式人生 > >android下如何實現EditText顯示隱藏密碼的實現,

android下如何實現EditText顯示隱藏密碼的實現,

在Google釋出了support:design:23+以後我們發現有這麼一個東西TextInputLayout,先看下效果圖:
這裡寫圖片描述

<android.support.design.widget.TextInputLayout
            android:id="@+id/pwdLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:passwordToggleEnabled="true"
            >

            <EditText
                android:id="@+id/pwdEdt"
android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/edt_pwd_hint" android:maxLines="1" android:inputType="textPassword" /> </android.support.design.widget.TextInputLayout
>

只要在佈局中新增屬性app:passwordToggleEnabled=”true”就可以實現當EditText的inputType=”textPassword”的時候在輸入框的最右邊就會顯示眼睛一樣的開關來顯示和隱藏密碼,需要的同學不妨試試看。