How do I get a Edittext with both a phone input and the ability to hide the string. I know that
android:inputType="textPassword"   hides the string, while
android:inputType="phone"   brings up a dialpad interface.
How to combine the two?
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" /> 
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With