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 th
I haven't tried this, but it might be possible to combine the two like so:
android:inputType="textPassword|phone"
since inputType can take on multiple values.