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