mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 14:25:37 +00:00
Android: Move a bunch of settings to advanced
This commit is contained in:
parent
5a0e4f85dd
commit
e53ec0cc73
|
@ -214,4 +214,11 @@
|
||||||
<string name="settings_summary_osd_show_resolution">Shows the resolution the game is rendering at in the top-right corner of the display.</string>
|
<string name="settings_summary_osd_show_resolution">Shows the resolution the game is rendering at in the top-right corner of the display.</string>
|
||||||
<string name="settings_summary_display_stretch">Stretches the active display to fill the screen.</string>
|
<string name="settings_summary_display_stretch">Stretches the active display to fill the screen.</string>
|
||||||
<string name="settings_display_stretch">Stretch To Fill</string>
|
<string name="settings_display_stretch">Stretch To Fill</string>
|
||||||
|
<string name="settings_category_global">Global Settings</string>
|
||||||
|
<string name="settings_category_display">Display Settings</string>
|
||||||
|
<string name="settings_category_audio">Audio Settings</string>
|
||||||
|
<string name="settings_category_console">Console Settings</string>
|
||||||
|
<string name="settings_category_cpu">CPU Settings</string>
|
||||||
|
<string name="settings_category_gpu">GPU Settings</string>
|
||||||
|
<string name="settings_category_logging">Logging Settings</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
@ -15,13 +15,18 @@
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
|
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||||
<ListPreference
|
<PreferenceCategory app:title="@string/settings_category_global" app:iconSpaceReserved="false">
|
||||||
app:key="Main/Language"
|
<SwitchPreferenceCompat
|
||||||
app:title="@string/settings_language"
|
app:key="Main/AutoLoadCheats"
|
||||||
app:defaultValue="none"
|
app:title="@string/settings_load_patch_codes"
|
||||||
app:entries="@array/settings_language_entries"
|
app:defaultValue="true"
|
||||||
app:entryValues="@array/settings_language_values"
|
app:summary="@string/settings_summary_load_patch_codes"
|
||||||
app:useSimpleSummaryProvider="true"
|
app:iconSpaceReserved="false" />
|
||||||
|
<SwitchPreferenceCompat
|
||||||
|
app:key="Main/ApplyGameSettings"
|
||||||
|
app:title="@string/settings_apply_compatibility_settings"
|
||||||
|
app:defaultValue="true"
|
||||||
|
app:summary="@string/settings_summary_apply_compatibility_settings"
|
||||||
app:iconSpaceReserved="false" />
|
app:iconSpaceReserved="false" />
|
||||||
<SwitchPreferenceCompat
|
<SwitchPreferenceCompat
|
||||||
app:key="Main/DisableAllEnhancements"
|
app:key="Main/DisableAllEnhancements"
|
||||||
|
@ -35,12 +40,77 @@
|
||||||
app:defaultValue="false"
|
app:defaultValue="false"
|
||||||
app:summary="@string/settings_summary_sustained_performance_mode"
|
app:summary="@string/settings_summary_sustained_performance_mode"
|
||||||
app:iconSpaceReserved="false" />
|
app:iconSpaceReserved="false" />
|
||||||
|
</PreferenceCategory>
|
||||||
|
|
||||||
|
<PreferenceCategory app:title="@string/settings_category_display" app:iconSpaceReserved="false">
|
||||||
|
<SwitchPreferenceCompat
|
||||||
|
app:key="Display/VSync"
|
||||||
|
app:title="@string/settings_video_sync"
|
||||||
|
app:defaultValue="false"
|
||||||
|
app:summary="@string/settings_summary_video_sync"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
|
<SwitchPreferenceCompat
|
||||||
|
app:key="Main/SyncToHostRefreshRate"
|
||||||
|
app:title="@string/settings_general_sync_to_host_refresh_rate"
|
||||||
|
app:defaultValue="false"
|
||||||
|
app:summary="@string/settings_summary_general_sync_to_host_refresh_rate"
|
||||||
|
app:dependency="Display/VSync"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
|
<SwitchPreferenceCompat
|
||||||
|
app:key="Display/DisplayAllFrames"
|
||||||
|
app:title="@string/settings_display_all_frames"
|
||||||
|
app:defaultValue="false"
|
||||||
|
app:summary="@string/settings_summary_display_all_frames"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
<ListPreference
|
<ListPreference
|
||||||
app:key="CPU/Overclock"
|
app:key="Display/MaxFPS"
|
||||||
app:title="@string/settings_cpu_overclocking"
|
app:title="@string/settings_presented_frame_limit"
|
||||||
app:defaultValue="100"
|
app:defaultValue="60"
|
||||||
app:entries="@array/settings_advanced_cpu_overclock_entries"
|
app:entries="@array/settings_advanced_display_fps_limit_entries"
|
||||||
app:entryValues="@array/settings_advanced_cpu_overclock_values"
|
app:entryValues="@array/settings_advanced_display_fps_limit_values"
|
||||||
|
app:useSimpleSummaryProvider="true"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
|
</PreferenceCategory>
|
||||||
|
|
||||||
|
<PreferenceCategory app:title="@string/settings_category_audio" app:iconSpaceReserved="false">
|
||||||
|
<ListPreference
|
||||||
|
app:key="Audio/Backend"
|
||||||
|
app:title="@string/settings_audio_backend"
|
||||||
|
app:entries="@array/settings_audio_backend_entries"
|
||||||
|
app:entryValues="@array/settings_audio_backend_values"
|
||||||
|
app:defaultValue="OpenSLES"
|
||||||
|
app:useSimpleSummaryProvider="true"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
|
<ListPreference
|
||||||
|
app:key="Audio/BufferSize"
|
||||||
|
app:title="@string/settings_audio_buffer_size"
|
||||||
|
app:entries="@array/settings_audio_buffer_size_entries"
|
||||||
|
app:entryValues="@array/settings_audio_buffer_size_values"
|
||||||
|
app:defaultValue="2048"
|
||||||
|
app:summary="@string/settings_summary_audio_buffer_size"
|
||||||
|
app:useSimpleSummaryProvider="true"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
|
<SwitchPreferenceCompat
|
||||||
|
app:key="Audio/Sync"
|
||||||
|
app:title="@string/settings_audio_sync"
|
||||||
|
app:defaultValue="true"
|
||||||
|
app:summary="@string/settings_summary_audio_sync"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
|
<SwitchPreferenceCompat
|
||||||
|
app:key="Audio/Resampling"
|
||||||
|
app:title="@string/settings_audio_resampling"
|
||||||
|
app:defaultValue="true"
|
||||||
|
app:summary="@string/settings_summary_audio_resampling"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
|
</PreferenceCategory>
|
||||||
|
|
||||||
|
<PreferenceCategory app:title="@string/settings_category_console" app:iconSpaceReserved="false">
|
||||||
|
<ListPreference
|
||||||
|
app:key="Console/Region"
|
||||||
|
app:title="@string/settings_console_region"
|
||||||
|
app:entries="@array/settings_console_region_entries"
|
||||||
|
app:entryValues="@array/settings_console_region_values"
|
||||||
|
app:defaultValue="Auto"
|
||||||
app:useSimpleSummaryProvider="true"
|
app:useSimpleSummaryProvider="true"
|
||||||
app:iconSpaceReserved="false" />
|
app:iconSpaceReserved="false" />
|
||||||
<SwitchPreferenceCompat
|
<SwitchPreferenceCompat
|
||||||
|
@ -55,6 +125,43 @@
|
||||||
app:defaultValue="false"
|
app:defaultValue="false"
|
||||||
app:summary="@string/settings_summary_preload_image_to_ram"
|
app:summary="@string/settings_summary_preload_image_to_ram"
|
||||||
app:iconSpaceReserved="false" />
|
app:iconSpaceReserved="false" />
|
||||||
|
</PreferenceCategory>
|
||||||
|
|
||||||
|
<PreferenceCategory app:title="@string/settings_category_cpu" app:iconSpaceReserved="false">
|
||||||
|
<ListPreference
|
||||||
|
app:key="CPU/ExecutionMode"
|
||||||
|
app:title="@string/settings_cpu_execution_mode"
|
||||||
|
app:entries="@array/settings_cpu_execution_mode_entries"
|
||||||
|
app:entryValues="@array/settings_cpu_execution_mode_values"
|
||||||
|
app:defaultValue="Recompiler"
|
||||||
|
app:useSimpleSummaryProvider="true"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
|
<ListPreference
|
||||||
|
app:key="CPU/Overclock"
|
||||||
|
app:title="@string/settings_cpu_overclocking"
|
||||||
|
app:defaultValue="100"
|
||||||
|
app:entries="@array/settings_advanced_cpu_overclock_entries"
|
||||||
|
app:entryValues="@array/settings_advanced_cpu_overclock_values"
|
||||||
|
app:useSimpleSummaryProvider="true"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
|
<SwitchPreferenceCompat
|
||||||
|
app:key="CPU/RecompilerICache"
|
||||||
|
app:title="@string/settings_cpu_recompiler_icache"
|
||||||
|
app:defaultValue="false"
|
||||||
|
app:summary="@string/settings_summary_cpu_recompiler_icache"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
|
<ListPreference
|
||||||
|
app:key="CPU/FastmemMode"
|
||||||
|
app:title="@string/settings_cpu_recompiler_fastmem"
|
||||||
|
app:entries="@array/settings_cpu_fastmem_mode_entries"
|
||||||
|
app:entryValues="@array/settings_cpu_fastmem_mode_values"
|
||||||
|
app:useSimpleSummaryProvider="true"
|
||||||
|
app:defaultValue="MMap"
|
||||||
|
app:summary="@string/settings_summary_cpu_recompiler_fastmem"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
|
</PreferenceCategory>
|
||||||
|
|
||||||
|
<PreferenceCategory app:title="@string/settings_category_gpu" app:iconSpaceReserved="false">
|
||||||
<SwitchPreferenceCompat
|
<SwitchPreferenceCompat
|
||||||
app:key="GPU/UseThread"
|
app:key="GPU/UseThread"
|
||||||
app:title="@string/settings_gpu_thread"
|
app:title="@string/settings_gpu_thread"
|
||||||
|
@ -79,40 +186,9 @@
|
||||||
app:defaultValue="false"
|
app:defaultValue="false"
|
||||||
app:summary="@string/settings_summary_pgxp_cpu_mode"
|
app:summary="@string/settings_summary_pgxp_cpu_mode"
|
||||||
app:iconSpaceReserved="false" />
|
app:iconSpaceReserved="false" />
|
||||||
<SwitchPreferenceCompat
|
</PreferenceCategory>
|
||||||
app:key="CPU/RecompilerICache"
|
|
||||||
app:title="@string/settings_cpu_recompiler_icache"
|
<PreferenceCategory app:title="@string/settings_category_logging" app:iconSpaceReserved="false">
|
||||||
app:defaultValue="false"
|
|
||||||
app:summary="@string/settings_summary_cpu_recompiler_icache"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<ListPreference
|
|
||||||
app:key="CPU/FastmemMode"
|
|
||||||
app:title="@string/settings_cpu_recompiler_fastmem"
|
|
||||||
app:entries="@array/settings_cpu_fastmem_mode_entries"
|
|
||||||
app:entryValues="@array/settings_cpu_fastmem_mode_values"
|
|
||||||
app:useSimpleSummaryProvider="true"
|
|
||||||
app:defaultValue="MMap"
|
|
||||||
app:summary="@string/settings_summary_cpu_recompiler_fastmem"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<SwitchPreferenceCompat
|
|
||||||
app:key="Display/DisplayAllFrames"
|
|
||||||
app:title="@string/settings_display_all_frames"
|
|
||||||
app:defaultValue="false"
|
|
||||||
app:summary="@string/settings_summary_display_all_frames"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<ListPreference
|
|
||||||
app:key="Display/MaxFPS"
|
|
||||||
app:title="@string/settings_presented_frame_limit"
|
|
||||||
app:defaultValue="60"
|
|
||||||
app:entries="@array/settings_advanced_display_fps_limit_entries"
|
|
||||||
app:entryValues="@array/settings_advanced_display_fps_limit_values"
|
|
||||||
app:useSimpleSummaryProvider="true"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<SwitchPreferenceCompat
|
|
||||||
app:key="BIOS/PatchTTYEnable"
|
|
||||||
app:title="@string/settings_console_tty_output"
|
|
||||||
app:defaultValue="false"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<ListPreference
|
<ListPreference
|
||||||
app:key="Logging/LogLevel"
|
app:key="Logging/LogLevel"
|
||||||
app:title="@string/settings_logging_level"
|
app:title="@string/settings_logging_level"
|
||||||
|
@ -133,5 +209,12 @@
|
||||||
app:defaultValue="false"
|
app:defaultValue="false"
|
||||||
app:summary="@string/settings_summary_log_to_logcat"
|
app:summary="@string/settings_summary_log_to_logcat"
|
||||||
app:iconSpaceReserved="false" />
|
app:iconSpaceReserved="false" />
|
||||||
|
<SwitchPreferenceCompat
|
||||||
|
app:key="BIOS/PatchTTYEnable"
|
||||||
|
app:title="@string/settings_console_tty_output"
|
||||||
|
app:defaultValue="false"
|
||||||
|
app:summary="Logs debug messages printed by games."
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
|
</PreferenceCategory>
|
||||||
|
|
||||||
</PreferenceScreen>
|
</PreferenceScreen>
|
||||||
|
|
|
@ -47,34 +47,5 @@
|
||||||
app:defaultValue="false"
|
app:defaultValue="false"
|
||||||
app:summary="@string/settings_summary_mute_cd_audio"
|
app:summary="@string/settings_summary_mute_cd_audio"
|
||||||
app:iconSpaceReserved="false" />
|
app:iconSpaceReserved="false" />
|
||||||
<ListPreference
|
|
||||||
app:key="Audio/Backend"
|
|
||||||
app:title="@string/settings_audio_backend"
|
|
||||||
app:entries="@array/settings_audio_backend_entries"
|
|
||||||
app:entryValues="@array/settings_audio_backend_values"
|
|
||||||
app:defaultValue="OpenSLES"
|
|
||||||
app:useSimpleSummaryProvider="true"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<ListPreference
|
|
||||||
app:key="Audio/BufferSize"
|
|
||||||
app:title="@string/settings_audio_buffer_size"
|
|
||||||
app:entries="@array/settings_audio_buffer_size_entries"
|
|
||||||
app:entryValues="@array/settings_audio_buffer_size_values"
|
|
||||||
app:defaultValue="2048"
|
|
||||||
app:summary="@string/settings_summary_audio_buffer_size"
|
|
||||||
app:useSimpleSummaryProvider="true"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<SwitchPreferenceCompat
|
|
||||||
app:key="Audio/Sync"
|
|
||||||
app:title="@string/settings_audio_sync"
|
|
||||||
app:defaultValue="true"
|
|
||||||
app:summary="@string/settings_summary_audio_sync"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<SwitchPreferenceCompat
|
|
||||||
app:key="Audio/Resampling"
|
|
||||||
app:title="@string/settings_audio_resampling"
|
|
||||||
app:defaultValue="true"
|
|
||||||
app:summary="@string/settings_summary_audio_resampling"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
|
|
||||||
</PreferenceScreen>
|
</PreferenceScreen>
|
||||||
|
|
|
@ -25,6 +25,14 @@
|
||||||
app:defaultValue="DigitalController"
|
app:defaultValue="DigitalController"
|
||||||
app:useSimpleSummaryProvider="true"
|
app:useSimpleSummaryProvider="true"
|
||||||
app:iconSpaceReserved="false" />
|
app:iconSpaceReserved="false" />
|
||||||
|
<ListPreference
|
||||||
|
app:key="Controller1/TouchscreenControllerView"
|
||||||
|
app:title="@string/settings_touchscreen_controller_view"
|
||||||
|
app:entries="@array/settings_touchscreen_controller_view_entries"
|
||||||
|
app:entryValues="@array/settings_touchscreen_controller_view_values"
|
||||||
|
app:defaultValue="digital"
|
||||||
|
app:useSimpleSummaryProvider="true"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
<Preference
|
<Preference
|
||||||
app:title="@string/settings_controller_mapping"
|
app:title="@string/settings_controller_mapping"
|
||||||
app:summary="@string/settings_controller_mapping_summary"
|
app:summary="@string/settings_controller_mapping_summary"
|
||||||
|
@ -46,14 +54,6 @@
|
||||||
app:summary="@string/settings_summary_use_analog_sticks_for_dpad"
|
app:summary="@string/settings_summary_use_analog_sticks_for_dpad"
|
||||||
app:defaultValue="true"
|
app:defaultValue="true"
|
||||||
app:iconSpaceReserved="false" />
|
app:iconSpaceReserved="false" />
|
||||||
<ListPreference
|
|
||||||
app:key="Controller1/TouchscreenControllerView"
|
|
||||||
app:title="@string/settings_touchscreen_controller_view"
|
|
||||||
app:entries="@array/settings_touchscreen_controller_view_entries"
|
|
||||||
app:entryValues="@array/settings_touchscreen_controller_view_values"
|
|
||||||
app:defaultValue="digital"
|
|
||||||
app:useSimpleSummaryProvider="true"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<SwitchPreferenceCompat
|
<SwitchPreferenceCompat
|
||||||
app:key="Controller1/AutoHideTouchscreenController"
|
app:key="Controller1/AutoHideTouchscreenController"
|
||||||
app:title="@string/settings_auto_hide_touchscreen_controller"
|
app:title="@string/settings_auto_hide_touchscreen_controller"
|
||||||
|
|
|
@ -41,6 +41,14 @@
|
||||||
app:defaultValue="0.0"
|
app:defaultValue="0.0"
|
||||||
app:useSimpleSummaryProvider="true"
|
app:useSimpleSummaryProvider="true"
|
||||||
app:iconSpaceReserved="false" />
|
app:iconSpaceReserved="false" />
|
||||||
|
<ListPreference
|
||||||
|
app:key="Main/EmulationScreenOrientation"
|
||||||
|
app:title="@string/settings_emulation_screen_orientation"
|
||||||
|
app:entries="@array/settings_emulation_screen_orientation_entries"
|
||||||
|
app:entryValues="@array/settings_emulation_screen_orientation_values"
|
||||||
|
app:defaultValue="unspecified"
|
||||||
|
app:useSimpleSummaryProvider="true"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
<SwitchPreferenceCompat
|
<SwitchPreferenceCompat
|
||||||
app:key="Main/SaveStateOnExit"
|
app:key="Main/SaveStateOnExit"
|
||||||
app:title="@string/settings_save_state_on_exit"
|
app:title="@string/settings_save_state_on_exit"
|
||||||
|
@ -53,65 +61,6 @@
|
||||||
app:defaultValue="false"
|
app:defaultValue="false"
|
||||||
app:summary="@string/settings_summary_pause_when_menu_opened"
|
app:summary="@string/settings_summary_pause_when_menu_opened"
|
||||||
app:iconSpaceReserved="false" />
|
app:iconSpaceReserved="false" />
|
||||||
<ListPreference
|
|
||||||
app:key="Main/Theme"
|
|
||||||
app:title="@string/settings_theme"
|
|
||||||
app:entries="@array/settings_theme_entries"
|
|
||||||
app:entryValues="@array/settings_theme_values"
|
|
||||||
app:defaultValue="follow_system"
|
|
||||||
app:useSimpleSummaryProvider="true"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<ListPreference
|
|
||||||
app:key="Main/EmulationScreenOrientation"
|
|
||||||
app:title="@string/settings_emulation_screen_orientation"
|
|
||||||
app:entries="@array/settings_emulation_screen_orientation_entries"
|
|
||||||
app:entryValues="@array/settings_emulation_screen_orientation_values"
|
|
||||||
app:defaultValue="unspecified"
|
|
||||||
app:useSimpleSummaryProvider="true"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<SwitchPreferenceCompat
|
|
||||||
app:key="Main/AutoLoadCheats"
|
|
||||||
app:title="@string/settings_load_patch_codes"
|
|
||||||
app:defaultValue="true"
|
|
||||||
app:summary="@string/settings_summary_load_patch_codes"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<SwitchPreferenceCompat
|
|
||||||
app:key="Main/ApplyGameSettings"
|
|
||||||
app:title="@string/settings_apply_compatibility_settings"
|
|
||||||
app:defaultValue="true"
|
|
||||||
app:summary="@string/settings_summary_apply_compatibility_settings"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<SwitchPreferenceCompat
|
|
||||||
app:key="Display/VSync"
|
|
||||||
app:title="@string/settings_video_sync"
|
|
||||||
app:defaultValue="false"
|
|
||||||
app:summary="@string/settings_summary_video_sync"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<SwitchPreferenceCompat
|
|
||||||
app:key="Main/SyncToHostRefreshRate"
|
|
||||||
app:title="@string/settings_general_sync_to_host_refresh_rate"
|
|
||||||
app:defaultValue="false"
|
|
||||||
app:summary="@string/settings_summary_general_sync_to_host_refresh_rate"
|
|
||||||
app:dependency="Display/VSync"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
<ListPreference
|
|
||||||
app:key="Console/Region"
|
|
||||||
app:title="@string/settings_console_region"
|
|
||||||
app:entries="@array/settings_console_region_entries"
|
|
||||||
app:entryValues="@array/settings_console_region_values"
|
|
||||||
app:defaultValue="Auto"
|
|
||||||
app:useSimpleSummaryProvider="true"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
|
|
||||||
<ListPreference
|
|
||||||
app:key="CPU/ExecutionMode"
|
|
||||||
app:title="@string/settings_cpu_execution_mode"
|
|
||||||
app:entries="@array/settings_cpu_execution_mode_entries"
|
|
||||||
app:entryValues="@array/settings_cpu_execution_mode_values"
|
|
||||||
app:defaultValue="Recompiler"
|
|
||||||
app:useSimpleSummaryProvider="true"
|
|
||||||
app:iconSpaceReserved="false" />
|
|
||||||
|
|
||||||
<ListPreference
|
<ListPreference
|
||||||
app:key="GPU/Renderer"
|
app:key="GPU/Renderer"
|
||||||
app:title="@string/settings_gpu_renderer"
|
app:title="@string/settings_gpu_renderer"
|
||||||
|
@ -120,5 +69,21 @@
|
||||||
app:defaultValue="OpenGL"
|
app:defaultValue="OpenGL"
|
||||||
app:useSimpleSummaryProvider="true"
|
app:useSimpleSummaryProvider="true"
|
||||||
app:iconSpaceReserved="false" />
|
app:iconSpaceReserved="false" />
|
||||||
|
<ListPreference
|
||||||
|
app:key="Main/Language"
|
||||||
|
app:title="@string/settings_language"
|
||||||
|
app:defaultValue="none"
|
||||||
|
app:entries="@array/settings_language_entries"
|
||||||
|
app:entryValues="@array/settings_language_values"
|
||||||
|
app:useSimpleSummaryProvider="true"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
|
<ListPreference
|
||||||
|
app:key="Main/Theme"
|
||||||
|
app:title="@string/settings_theme"
|
||||||
|
app:entries="@array/settings_theme_entries"
|
||||||
|
app:entryValues="@array/settings_theme_values"
|
||||||
|
app:defaultValue="follow_system"
|
||||||
|
app:useSimpleSummaryProvider="true"
|
||||||
|
app:iconSpaceReserved="false" />
|
||||||
|
|
||||||
</PreferenceScreen>
|
</PreferenceScreen>
|
||||||
|
|
Loading…
Reference in a new issue