habitica-android/Habitica/res/xml/preferences_fragment.xml

72 lines
2.5 KiB
XML
Raw Normal View History

<?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">
<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>
</PreferenceScreen>
<Preference android:title="@string/logout"
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>
2015-12-01 01:34:18 +00:00
<PreferenceCategory
android:title="@string/pref_reminder_header">
2015-12-01 01:34:18 +00:00
<CheckBoxPreference
android:key="use_reminder"
android:defaultValue="false"
2015-12-01 01:34:18 +00:00
android:title="@string/pref_reminder_checkbox"/>
2015-12-01 01:34:18 +00:00
<com.habitrpg.android.habitica.prefs.TimePreference
android:key="reminder_time"
android:defaultValue="19:30"
2015-12-01 01:34:18 +00:00
android:title="@string/pref_reminder_picker" />
2015-12-01 01:34:18 +00:00
</PreferenceCategory>
</PreferenceScreen>