2015-11-28 12:58:36 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:title="@string/PS_contact_title" >
|
2015-12-01 01:34:18 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
|
android:title="@string/pref_account_header">
|
2015-11-28 12:58:36 +00:00
|
|
|
<EditTextPreference
|
|
|
|
|
android:key="accountDetails"
|
2015-12-03 20:41:03 +00:00
|
|
|
android:title="@string/account_details"
|
2015-11-28 12:58:36 +00:00
|
|
|
android:summary="Check your account details" />
|
|
|
|
|
|
|
|
|
|
|
2015-12-03 20:41:03 +00:00
|
|
|
<Preference android:title="@string/logout"
|
2015-11-28 12:58:36 +00:00
|
|
|
android:key="logout"
|
2015-12-03 20:41:03 +00:00
|
|
|
android:summary="Log out of your account"/>
|
2015-12-01 01:34:18 +00:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
<PreferenceCategory
|
|
|
|
|
android:title="@string/pref_reminder_header">
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
|
android:key="use_reminder"
|
2015-12-22 14:47:23 +00:00
|
|
|
android:defaultValue="false"
|
2015-12-01 01:34:18 +00:00
|
|
|
android:title="@string/pref_reminder_checkbox"/>
|
|
|
|
|
<com.habitrpg.android.habitica.prefs.TimePreference
|
|
|
|
|
android:key="reminder_time"
|
2015-12-22 14:47:23 +00:00
|
|
|
android:defaultValue="19:30"
|
2015-12-01 01:34:18 +00:00
|
|
|
android:title="@string/pref_reminder_picker" />
|
|
|
|
|
</PreferenceCategory>
|
2015-11-28 12:58:36 +00:00
|
|
|
|
|
|
|
|
</PreferenceScreen>
|