music-cyclon/app/src/main/res/xml/preferences.xml

39 lines
1.4 KiB
XML
Raw Normal View History

2015-08-19 23:32:57 +02:00
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
2015-08-20 17:40:16 +02:00
<EditTextPreference
2016-06-14 15:49:18 +02:00
android:defaultValue="@string/address"
2015-08-20 17:40:16 +02:00
android:inputType="text"
android:key="address"
android:summary="Address of the synchronisation server"
android:title="Address" />
2015-08-19 23:32:57 +02:00
<EditTextPreference
2016-06-14 15:49:18 +02:00
android:defaultValue="@integer/threads"
2015-08-19 23:32:57 +02:00
android:inputType="number"
android:key="threads"
android:summary="Number of threads to use for downloading"
android:title="Threads" />
<EditTextPreference
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2018-05-25 16:18:56 +02:00
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"
2018-05-25 16:18:56 +02:00
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"
2018-05-25 16:18:56 +02:00
android:inputType="textPassword"
android:key="password"
android:summary="HTTP auth password, if required!"
android:title="HTTP Password" />
2015-08-19 23:32:57 +02:00
2018-05-25 16:18:56 +02:00
</PreferenceScreen>