1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DroidUptime/res/xml/preferences.xml

13 lines
1.0 KiB

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android"
android:key="preferences">
<PreferenceCategory android:title="@string/pref_auth_cat" android:key="auth">
<EditTextPreference android:key="username" android:title="@string/pref_auth_user"></EditTextPreference>
<EditTextPreference android:key="password" android:title="@string/pref_auth_pass" android:password="true" ></EditTextPreference>
</PreferenceCategory>
<PreferenceCategory android:key="general" android:title="@string/pref_gen_cat">
<ListPreference android:entries="@array/update_intervals" android:key="pref_gen_update_int" android:summary="@string/pref_gen_update_int_desc" android:title="@string/pref_gen_update_int" android:entryValues="@array/update_intervals_values"></ListPreference>
<EditTextPreference android:summary="@string/pref_gen_hostname_desc" android:title="@string/pref_gen_hostname" android:key="pref_gen_hostname"></EditTextPreference>
</PreferenceCategory>
</PreferenceScreen>