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" >
|
2016-02-27 20:20:33 +00:00
|
|
|
|
2015-12-01 01:34:18 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
|
android:title="@string/pref_account_header">
|
2015-11-28 12:58:36 +00:00
|
|
|
|
2016-02-27 20:20:33 +00:00
|
|
|
<PreferenceScreen
|
|
|
|
|
android:key="accountDetails"
|
|
|
|
|
android:title="@string/account_details"
|
|
|
|
|
android:summary="Check your account details">
|
|
|
|
|
|
|
|
|
|
<PreferenceCategory android:title="Account Details">
|
|
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
|
android:key="@string/SP_username"
|
|
|
|
|
android:title="Login Name"
|
|
|
|
|
android:selectable="true"
|
|
|
|
|
android:persistent="false"
|
|
|
|
|
android:shouldDisableView="false"
|
|
|
|
|
android:summary="Login Name" />
|
|
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
|
android:key="@string/SP_email"
|
|
|
|
|
android:title="E-mail"
|
|
|
|
|
android:selectable="true"
|
|
|
|
|
android:persistent="false"
|
|
|
|
|
android:shouldDisableView="false"
|
|
|
|
|
android:summary="E-mail" />
|
|
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
|
android:key="@string/SP_userID"
|
|
|
|
|
android:title="@string/SP_userID_title"
|
|
|
|
|
android:selectable="true"
|
|
|
|
|
android:persistent="false"
|
|
|
|
|
android:shouldDisableView="false"
|
|
|
|
|
android:summary="@string/SP_userID_summary"/>
|
|
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
|
android:key="@string/SP_APIToken"
|
|
|
|
|
android:title="@string/SP_APIToken_title"
|
|
|
|
|
android:selectable="true"
|
|
|
|
|
android:persistent="false"
|
|
|
|
|
android:shouldDisableView="false"
|
|
|
|
|
android:summary="@string/SP_APIToken_summary"/>
|
|
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
2015-11-28 12:58:36 +00:00
|
|
|
|
2016-02-27 20:20:33 +00:00
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<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>
|
2016-02-27 20:20:33 +00:00
|
|
|
|
2015-12-01 01:34:18 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
|
android:title="@string/pref_reminder_header">
|
2016-02-27 20:20:33 +00:00
|
|
|
|
2015-12-01 01:34:18 +00:00
|
|
|
<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"/>
|
2016-02-27 20:20:33 +00:00
|
|
|
|
2015-12-01 01:34:18 +00:00
|
|
|
<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" />
|
2016-02-27 20:20:33 +00:00
|
|
|
|
2015-12-01 01:34:18 +00:00
|
|
|
</PreferenceCategory>
|
2015-11-28 12:58:36 +00:00
|
|
|
|
|
|
|
|
</PreferenceScreen>
|