2015-11-11 13:28:24 +00:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
2016-01-30 22:20:05 +00:00
|
|
|
<PreferenceCategory android:title="@string/pref_help_keyboard">
|
2016-01-31 13:27:49 +00:00
|
|
|
<Preference android:title="@string/pref_help_keyheighlited"
|
2016-01-30 22:20:05 +00:00
|
|
|
android:selectable="false"
|
|
|
|
android:icon="@drawable/numpad_highlighted"
|
|
|
|
android:summary="@string/pref_help_keyheighlited_summary"/>
|
2016-01-31 13:27:49 +00:00
|
|
|
<Preference android:title="@string/pref_help_keyheighlited_yellow"
|
2016-01-30 22:20:05 +00:00
|
|
|
android:selectable="false"
|
|
|
|
android:icon="@drawable/numpad_highlighted_three"
|
|
|
|
android:summary="@string/pref_help_keyheighlited_yellow_summary"/>
|
2015-11-11 13:28:24 +00:00
|
|
|
|
2016-01-31 13:27:49 +00:00
|
|
|
<Preference android:title="@string/pref_help_do"
|
2016-01-30 22:20:05 +00:00
|
|
|
android:selectable="false"
|
|
|
|
android:icon="@drawable/ic_redo_black_48dp"
|
|
|
|
android:summary="@string/pref_help_do_summary"/>
|
2016-01-31 13:27:49 +00:00
|
|
|
<Preference android:title="@string/pref_help_undo"
|
2016-01-30 22:20:05 +00:00
|
|
|
android:selectable="false"
|
|
|
|
android:icon="@drawable/ic_undo_black_48dp"
|
|
|
|
android:summary="@string/pref_help_undo_summary"/>
|
2016-01-31 13:27:49 +00:00
|
|
|
<Preference android:title="@string/pref_help_hint"
|
2016-01-30 22:20:05 +00:00
|
|
|
android:selectable="false"
|
|
|
|
android:icon="@drawable/ic_lightbulb_outline_black_48dp"
|
|
|
|
android:summary="@string/pref_help_hint_summary"/>
|
2016-01-31 13:27:49 +00:00
|
|
|
<Preference android:title="@string/pref_help_delete"
|
2016-01-30 22:20:05 +00:00
|
|
|
android:selectable="false"
|
2016-01-31 13:27:49 +00:00
|
|
|
android:icon="@drawable/ic_delete_black_48dp"
|
2016-01-30 22:20:05 +00:00
|
|
|
android:summary="@string/pref_help_delete_summary"/>
|
2016-01-31 13:27:49 +00:00
|
|
|
<Preference android:title="@string/pref_help_notes"
|
2016-01-30 22:20:05 +00:00
|
|
|
android:selectable="false"
|
|
|
|
android:icon="@drawable/ic_create_black_48dp"
|
|
|
|
android:summary="@string/pref_help_notes_summary"/>
|
2016-01-28 18:37:22 +00:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
2016-01-30 22:20:05 +00:00
|
|
|
<PreferenceCategory android:title="@string/pref_help_gamefield">
|
2016-01-28 18:37:22 +00:00
|
|
|
</PreferenceCategory>
|
2016-01-30 22:20:05 +00:00
|
|
|
|
|
|
|
<PreferenceCategory android:title="@string/pref_help_statusbar">
|
2016-01-28 18:37:22 +00:00
|
|
|
</PreferenceCategory>
|
2015-12-20 15:26:41 +00:00
|
|
|
|
2016-01-31 13:27:49 +00:00
|
|
|
<PreferenceCategory android:title="Privacy Info">
|
|
|
|
|
|
|
|
<Preference android:title="Privacy Friendly Sudoku" android:summary=""/>
|
|
|
|
|
|
|
|
<Preference android:title="Permissions" android:summary="Privacy Friendly Sudoku app whiche does not need any permission."/>
|
|
|
|
|
|
|
|
</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>
|