2019-11-26 13:37:29 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="true"
|
2020-05-06 08:36:40 -04:00
|
|
|
android:icon="@drawable/ic_popup_light"
|
2019-11-26 13:37:29 -05:00
|
|
|
android:key="popup_led_effect"
|
|
|
|
android:summary="@string/popup_led_summary"
|
|
|
|
android:title="@string/popup_led_title" />
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="0"
|
|
|
|
android:entries="@array/popupcamera_effects_entries"
|
|
|
|
android:entryValues="@array/popupcamera_effects_values"
|
2020-05-06 08:36:40 -04:00
|
|
|
android:icon="@drawable/ic_popup_sound"
|
2019-11-26 13:37:29 -05:00
|
|
|
android:key="popup_sound_effect"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/popup_sound_title" />
|
|
|
|
|
2020-10-11 15:55:53 -04:00
|
|
|
<Preference
|
|
|
|
android:key="motor_calibration"
|
|
|
|
android:title="@string/popup_calibration_title"
|
|
|
|
android:summary="@string/popup_calibration_summary"
|
|
|
|
android:icon="@drawable/ic_popup_calibration" />
|
|
|
|
|
2019-11-26 13:37:29 -05:00
|
|
|
</PreferenceScreen>
|