Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android中實現EditText密碼顯示隱藏的方法

Android中實現EditText密碼顯示隱藏的方法

編輯:關於Android編程

在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”的時候在輸入框的最右邊就會顯示眼睛一樣的開關來顯示和隱藏密碼,需要的同學不妨試試看。

參考:

http://stackoverflow.com/questions/39019675/remove-show-password-icon-in-android-n

相關閱讀:

Android EditText被軟鍵盤遮蓋的處理方法

Android中EditText顯示明文與密碼的兩種方式

以上所述是小編給大家介紹的Android中實現EditText密碼顯示隱藏的方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對本站網站的支持!

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved