android:inputType="numberPassword" does not work for me. Eclipse told me that String values ββare not allowed for this attribute. So I used the following:
<EditTextPreference android:key="@string/key" android:title="@string/title" android:summary="@string/summary" android:inputType="number" android:password="true" />
This provided me with an EditTextPreference with a dashed textdisplay and numeric keypad for input.
CrizZ Jan 09 '13 at 13:33 2013-01-09 13:33
source share