[Android] Update setting display

This commit is contained in:
zilmar 2016-10-02 09:40:17 +11:00
parent c729e406e9
commit 6550b293fa
14 changed files with 46 additions and 5 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1007 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 691 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -67,6 +67,18 @@
<string name="galleryLibrary">Games</string>
<!-- Settings -->
<string name="Hardware">Hardware</string>
<string name="Other">Other</string>
<string name="input_screen_summary">Controller settings</string>
<string name="input_screen_title">Input</string>
<string name="video_screen_summary">Graphic settings</string>
<string name="video_screen_title">Video</string>
<string name="audio_screen_summary">Sound settings</string>
<string name="audio_screen_title">Audio</string>
<string name="advanced_screen_summary">advanced/debugging settings</string>
<string name="advanced_screen_title">Advanced</string>
<string name="reset_summary">Restore default settings</string>
<string name="reset_title">Reset</string>
<string name="preferences">Settings</string>
<string name="settings_title">Settings</string>
<string name="displayFps_title">Framerate</string>

View File

@ -2,9 +2,38 @@
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
android:title="@string/preferences">
<CheckBoxPreference
android:defaultValue="false"
android:key="audio_Enabled"
android:summary="@string/audioEnabled_summary"
android:title="@string/audioEnabled_title" />
<PreferenceCategory android:title="@string/Hardware" >
<Preference
android:summary="@string/input_screen_summary"
android:title="@string/input_screen_title"
android:key="settings_input"
android:icon="@drawable/ic_controller"
/>
<Preference
android:summary="@string/video_screen_summary"
android:title="@string/video_screen_title"
android:key="settings_video"
android:icon="@drawable/ic_picture"
/>
<Preference
android:summary="@string/audio_screen_summary"
android:title="@string/audio_screen_title"
android:key="settings_audio"
android:icon="@drawable/ic_speaker"
/>
</PreferenceCategory>
<PreferenceCategory android:title="@string/Other" >
<Preference
android:summary="@string/advanced_screen_summary"
android:title="@string/advanced_screen_title"
android:key="settings_advanced"
android:icon="@drawable/ic_debug"
/>
<Preference
android:summary="@string/reset_summary"
android:title="@string/reset_title"
android:key="settings_reset"
android:icon="@drawable/ic_undo"
/>
</PreferenceCategory>
</PreferenceScreen>