x13thangelx

gummy_settings.xml

Apr 19th, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 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/gummy_settings_title"
  5. android:key="gummy_settings"
  6. xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
  7.  
  8. <PreferenceScreen
  9. android:key="about_settings"
  10. android:title="@string/about_gummy"
  11. android:icon="@drawable/ic_settings_performance"
  12. android:fragment="com.android.settings.About" />
  13.  
  14. <PreferenceScreen
  15. android:key="general_settings"
  16. android:title="@string/general_settings"
  17. android:icon="@drawable/gummy_gen_tweaks"
  18. android:fragment="com.android.settings.GeneralSettings" />
  19.  
  20. <PreferenceScreen
  21. android:key="systemui_tweaks"
  22. android:title="@string/systemui_tweaks"
  23. android:icon="@drawable/gummy_sysui_tweaks"
  24. android:fragment="com.android.settings.SystemUITweaks" />
  25.  
  26. <PreferenceScreen
  27. android:key="softkey_settings"
  28. android:title="@string/softkey_settings"
  29. android:icon="@drawable/gummy_softkeys"
  30. android:fragment="com.android.settings.Navbar" />
  31.  
  32. <PreferenceScreen
  33. android:key="power_widgets"
  34. android:title="@string/power_widgets"
  35. android:icon="@drawable/gummy_pw"
  36. android:fragment="com.android.settings.PowerWidget" />
  37.  
  38. <PreferenceScreen
  39. android:key="lockscreen_settings"
  40. android:title="@string/lockscreen_settings"
  41. android:icon="@drawable/gummy_lockscreen"
  42. android:fragment="com.android.settings.LockscreenSettings" />
  43.  
  44. <PreferenceScreen
  45. android:key="led_settings"
  46. android:title="@string/led_settings"
  47. android:icon="@drawable/gummy_led"
  48. android:fragment="com.android.settings.LEDSettings" />
  49.  
  50. <PreferenceScreen
  51. android:key="performance_settings"
  52. android:title="@string/performance_settings"
  53. android:icon="@drawable/gummy_performance">
  54. <intent android:action="android.intent.action.MAIN"
  55. android:targetPackage="com.liberty.settings"
  56. android:targetClass="com.liberty.settings.Performance" />
  57. </PreferenceScreen>
  58.  
  59. </PreferenceScreen>
Advertisement
Add Comment
Please, Sign In to add comment