程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-在Edittext中設置輸入電話號碼時隱藏字符串

android-在Edittext中設置輸入電話號碼時隱藏字符串

編輯:編程綜合問答
在Edittext中設置輸入電話號碼時隱藏字符串

怎麼設置Edittext屬性,當輸入電話號碼時能隱藏字符串,
我使用android:inputType="textPassword"來隱藏字符串,
當使用android:inputType="phone"會出現按鈕式撥號簿接口。
如何讓二者結合起來?

最佳回答:


android:password is deprecated, but AFAIK is the only way because android:inputType="phone|textPassword" is ignored ...

<EditText
    android:id="@+id/EditText01"
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:password="true"
    android:inputType="phone" />
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved