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

28 lines
1 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">
<EditTextPreference
android:key="accountDetails"
2015-12-03 20:41:03 +00:00
android:title="@string/account_details"
android:summary="Check your account details" />
2015-12-03 20:41:03 +00:00
<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>
<PreferenceCategory
android:title="@string/pref_reminder_header">
<CheckBoxPreference
android:key="use_reminder"
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"
android:defaultValue="19:30"
2015-12-01 01:34:18 +00:00
android:title="@string/pref_reminder_picker" />
</PreferenceCategory>
</PreferenceScreen>