mirror of
https://github.com/danog/mklwp.git
synced 2025-01-10 06:38:23 +01:00
6 lines
616 B
XML
6 lines
616 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<PreferenceScreen android:title="@string/settings_title"
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
<EditTextPreference android:title="@string/preference_fps_title" android:key="preference_fps" android:summary="@string/preference_fps_summary" android:defaultValue="20" />
|
||
|
<ListPreference android:entries="@array/size_names" android:title="@string/preference_size_title" android:key="preference_size" android:summary="@string/preference_size_summary" android:defaultValue="320, 480" android:entryValues="@array/size_values" />
|
||
|
</PreferenceScreen>
|