profile_preferences.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
  3. <Preference android:summary="@string/profile_warning"
  4. android:layout="@layout/preference_warning"
  5. android:key="pref_profile_warning"
  6. android:enabled="false" />
  7. <PreferenceCategory android:title="@string/general"
  8. android:key="pref_profile_general_settings">
  9. <EditTextPreference android:key="pref_profile_general_name"
  10. android:title="Name"
  11. android:summary="@string/change_name_of_profile"
  12. android:defaultValue=""/>
  13. <EditTextPreference android:key="pref_profile_general_description"
  14. android:title="@string/profile_description"
  15. android:summary="@string/change_desc_of_profile"
  16. android:defaultValue="" />
  17. <Preference android:key="pref_profile_general_image"
  18. android:title="Icon"
  19. android:summary="@string/change_icon_of_profile" />
  20. </PreferenceCategory>
  21. <PreferenceCategory android:title="@string/profile_monitor_ghost"
  22. android:key="pref_profile_protocols_ghost">
  23. <CheckBoxPreference android:key="pref_profile_protocols_ghost_active"
  24. android:title="@string/profile_activate_ghost"
  25. android:summary="@string/profile_activate_ghost_summary"
  26. android:defaultValue="false" />
  27. <EditTextPreference android:key="pref_profile_protocols_ghost_text"
  28. android:title="@string/profile_mirror_ghost"
  29. android:summary="@string/profile_mirror_ghost_summary"
  30. android:defaultValue=""
  31. android:dependency="pref_profile_protocols_ghost_active" />
  32. </PreferenceCategory>
  33. <PreferenceCategory android:title="@string/profile_monitor_protocols"
  34. android:key="pref_profile_protocols_settings">
  35. <Preference android:summary="@string/profile_activate_protocols_summary" />
  36. </PreferenceCategory>
  37. </PreferenceScreen>