x13thangelx

lockscreen_settings

Apr 19th, 2012
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.21 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:title="@string/lockscreen_settings"
  5. android:key="lockscreen_settings">
  6.  
  7. <PreferenceCategory
  8. android:key="general_category"
  9. android:title="General Settings">
  10.  
  11. <ListPreference
  12. android:key="lockscreen_styles"
  13. android:entries="@array/lockscreen_styles_entries"
  14. android:entryValues="@array/lockscreen_styles_values"
  15. android:title="@string/lockscreen_styles_title"
  16. android:summary="@string/lockscreen_styles_summary" />
  17.  
  18. <CheckBoxPreference
  19. android:key="rotary_arrows"
  20. android:title="@string/rotary_arrows_title">
  21. </CheckBoxPreference>
  22.  
  23. <CheckBoxPreference
  24. android:key="rotary_down"
  25. android:title="@string/rotary_down_title" >
  26. </CheckBoxPreference>
  27.  
  28. <CheckBoxPreference
  29. android:key="lockscreen_extra"
  30. android:title="@string/lockscreen_extra" >
  31. </CheckBoxPreference>
  32.  
  33. <CheckBoxPreference
  34. android:key="lockscreen_battery"
  35. android:title="@string/lockscreen_battery" >
  36. </CheckBoxPreference>
  37.  
  38. <ListPreference
  39. android:key="lockscreen_music_widget"
  40. android:entries="@array/lockscreen_music_widget_entries"
  41. android:entryValues="@array/lockscreen_music_widget_values"
  42. android:title="@string/lockscreen_music_widget_title"
  43. android:summary="@string/lockscreen_music_widget_summary" />
  44.  
  45. </PreferenceCategory>
  46.  
  47. <PreferenceCategory
  48. android:key="unlock_category"
  49. android:title="Unlocking Options">
  50.  
  51. <CheckBoxPreference
  52. android:key="lockscreen_before_unlock"
  53. android:title="@string/lockscreen_before_unlock" >
  54. </CheckBoxPreference>
  55.  
  56. <CheckBoxPreference
  57. android:key="quick_password_unlock"
  58. android:title="@string/quick_password_title"
  59. android:summary="@string/quick_password_summary" >
  60. </CheckBoxPreference>
  61.  
  62. <CheckBoxPreference
  63. android:key="volume_wake"
  64. android:title="@string/volume_wake" >
  65. </CheckBoxPreference>
  66. </PreferenceCategory>
  67.  
  68. <PreferenceCategory
  69. android:key="custom_app"
  70. android:title="Custom Apps">
  71.  
  72. <ListPreference
  73. android:key="sound_or_camera"
  74. android:entries="@array/sound_or_camera_entries"
  75. android:entryValues="@array/sound_or_camera_values"
  76. android:title="@string/sound_or_camera_title"
  77. android:summary="@string/sound_or_camera_summary" />
  78.  
  79. <Preference
  80. android:key="lockscreen_custom_1"
  81. android:title="@string/custom_app_1"
  82. android:summary="@string/custom_app_1_summary" />
  83.  
  84. <Preference
  85. android:key="lockscreen_custom_2"
  86. android:title="@string/custom_app_2"
  87. android:summary="@string/custom_app_2_summary" />
  88.  
  89. <Preference
  90. android:key="lockscreen_custom_3"
  91. android:title="@string/custom_app_3"
  92. android:summary="@string/custom_app_3_summary" />
  93.  
  94. </PreferenceCategory>
  95. </PreferenceScreen>
Advertisement
Add Comment
Please, Sign In to add comment