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

26 lines
952 B
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"
android:title="AccountDetails"
android:summary="Check your account details" />
<Preference android:title="LOGOUT"
android:key="logout"
android:summary="Logout your account"/>
2015-12-01 01:34:18 +00:00
</PreferenceCategory>
<PreferenceCategory
android:title="@string/pref_reminder_header">
<CheckBoxPreference
android:key="use_reminder"
android:title="@string/pref_reminder_checkbox"/>
<com.habitrpg.android.habitica.prefs.TimePreference
android:key="reminder_time"
android:title="@string/pref_reminder_picker" />
</PreferenceCategory>
</PreferenceScreen>