怎麼設置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" />