fix preference input types

pull/4/head
nico202 2018-05-25 16:18:56 +02:00
parent a757b967d1
commit fb1b0d3162
1 changed files with 4 additions and 4 deletions

View File

@ -17,23 +17,23 @@
<EditTextPreference
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="number"
android:inputType="text"
android:key="library_path"
android:summary="Where to save the music"
android:title="Library Path" />
<EditTextPreference
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="number"
android:inputType="text"
android:key="username"
android:summary="HTTP auth username, if required!"
android:title="HTTP username" />
<EditTextPreference
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="number"
android:inputType="textPassword"
android:key="password"
android:summary="HTTP auth password, if required!"
android:title="HTTP Password" />
</PreferenceScreen>
</PreferenceScreen>