Use switches instead of checkbox in settings

This commit is contained in:
Synced Synapse 2015-09-18 19:05:21 +01:00
parent 5bb0f49a36
commit d271d0b17a
1 changed files with 4 additions and 4 deletions

View File

@ -24,22 +24,22 @@
android:entryValues="@array/themes_values_array"
android:defaultValue="0"/>
<CheckBoxPreference
<SwitchPreference
android:key="pref_switch_to_remote_after_media_start"
android:title="@string/switch_to_remote"
android:defaultValue="true"/>
<CheckBoxPreference
<SwitchPreference
android:key="pref_show_notification"
android:title="@string/show_notification"
android:defaultValue="false"/>
<CheckBoxPreference
<SwitchPreference
android:key="pref_use_hardware_volume_keys"
android:title="@string/use_hardware_volume_keys"
android:defaultValue="true"/>
<CheckBoxPreference
<SwitchPreference
android:key="pref_vibrate_remote_buttons"
android:title="@string/vibrate_on_remote"
android:defaultValue="false"/>