2015-11-11 13:28:24 +00:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
2015-11-13 12:43:58 +00:00
|
|
|
<PreferenceCategory android:title="@string/pref_group_game">
|
|
|
|
<SwitchPreference android:id="@+id/pref_highlighting_selection_values"
|
|
|
|
android:key="pref_automatic_note_deletion"
|
|
|
|
android:title="@string/pref_automatic_note_deletion"
|
|
|
|
android:summary="@string/pref_automatic_note_deletion_summary"
|
|
|
|
android:defaultValue="true"/>
|
|
|
|
</PreferenceCategory>
|
2015-11-11 13:28:24 +00:00
|
|
|
|
|
|
|
<!-- NOTE: EditTextPreference accepts EditText attributes. -->
|
|
|
|
<!-- NOTE: EditTextPreference's summary should be set to its value by the activity code. -->
|
2015-11-13 12:43:58 +00:00
|
|
|
<!-- <EditTextPreference
|
2015-11-11 13:28:24 +00:00
|
|
|
android:key="example_text"
|
|
|
|
android:title="@string/pref_title_display_name"
|
|
|
|
android:defaultValue="@string/pref_default_display_name"
|
|
|
|
android:selectAllOnFocus="true"
|
|
|
|
android:inputType="textCapWords"
|
|
|
|
android:capitalize="words"
|
|
|
|
android:singleLine="true"
|
2015-11-13 12:43:58 +00:00
|
|
|
android:maxLines="1" /> -->
|
2015-11-11 13:28:24 +00:00
|
|
|
|
|
|
|
<!-- NOTE: Hide buttons to simplify the UI. Users can touch outside the dialog to
|
|
|
|
dismiss it. -->
|
|
|
|
<!-- NOTE: ListPreference's summary should be set to its value by the activity code. -->
|
2015-11-13 12:43:58 +00:00
|
|
|
<!-- <ListPreference
|
2015-11-11 13:28:24 +00:00
|
|
|
android:key="example_list"
|
|
|
|
android:title="@string/pref_title_add_friends_to_messages"
|
|
|
|
android:defaultValue="-1"
|
|
|
|
android:entries="@array/pref_example_list_titles"
|
|
|
|
android:entryValues="@array/pref_example_list_values"
|
|
|
|
android:negativeButtonText="@null"
|
2015-11-13 12:43:58 +00:00
|
|
|
android:positiveButtonText="@null" /> -->
|
2015-11-11 13:28:24 +00:00
|
|
|
|
|
|
|
</PreferenceScreen>
|