pref_laf_behavior.xml raw

   1  <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
   2  
   3      <ListPreference
   4          android:defaultValue="locked"
   5          android:entries="@array/pref_look_and_feel_orientation_display"
   6          android:entryValues="@array/pref_look_and_feel_orientation_values"
   7          android:icon="@drawable/ic_orientation"
   8          android:key="orientation"
   9          android:summary="@string/pref_look_and_feel_orientation_summary"
  10          android:title="@string/pref_look_and_feel_orientation" />
  11      <io.github.domi04151309.alwayson.custom.EditIntegerPreference
  12          android:defaultValue="64"
  13          android:icon="@drawable/ic_vibration"
  14          android:key="ao_vibration"
  15          android:summary="@string/pref_ao_vibration_summary"
  16          android:title="@string/pref_ao_vibration" />
  17      <io.github.domi04151309.alwayson.custom.EditIntegerPreference
  18          android:defaultValue="2"
  19          android:icon="@drawable/ic_speed"
  20          android:key="ao_animation_delay"
  21          android:summary="@string/pref_ao_animation_delay_summary"
  22          android:title="@string/pref_ao_animation_delay" />
  23      <SwitchPreference
  24          android:defaultValue="false"
  25          android:icon="@drawable/ic_speed"
  26          android:key="ao_smooth_animation"
  27          android:summary="@string/pref_ao_smooth_animation_summary"
  28          android:title="@string/pref_ao_smooth_animation" />
  29      <Preference
  30          android:icon="@drawable/ic_brightness"
  31          android:key="ao_force_brightness"
  32          android:summary="@string/pref_ao_force_brightness_summary"
  33          android:title="@string/pref_ao_force_brightness" />
  34      <io.github.domi04151309.alwayson.custom.EditIntegerPreference
  35          android:defaultValue="300"
  36          android:icon="@drawable/ic_touch_app"
  37          android:key="ao_double_tap_speed"
  38          android:summary="@string/pref_ao_double_tap_speed_summary"
  39          android:title="@string/pref_ao_double_tap_speed" />
  40      <SwitchPreference
  41          android:defaultValue="false"
  42          android:icon="@drawable/ic_touch_app"
  43          android:key="ao_double_tap_disabled"
  44          android:summary="@string/pref_ao_double_tap_disabled_summary"
  45          android:title="@string/pref_ao_double_tap_disabled" />
  46      <SwitchPreference
  47          android:defaultValue="false"
  48          android:icon="@drawable/ic_do_not_touch"
  49          android:key="ao_pocket_mode"
  50          android:summary="@string/pref_ao_pocket_mode_summary"
  51          android:title="@string/pref_ao_pocket_mode" />
  52      <SwitchPreference
  53          android:defaultValue="false"
  54          android:icon="@drawable/ic_dnd"
  55          android:key="ao_dnd"
  56          android:summary="@string/pref_ao_dnd_summary"
  57          android:title="@string/pref_ao_dnd" />
  58      <SwitchPreference
  59          android:defaultValue="false"
  60          android:icon="@drawable/ic_battery"
  61          android:key="ao_power_saving"
  62          android:summary="@string/pref_ao_power_saving_summary"
  63          android:title="@string/pref_ao_power_saving" />
  64      <SwitchPreference
  65          android:defaultValue="false"
  66          android:icon="@drawable/ic_notification"
  67          android:key="heads_up"
  68          android:summary="@string/pref_look_and_feel_heads_up_summary"
  69          android:title="@string/pref_look_and_feel_heads_up" />
  70  
  71  </PreferenceScreen>
  72