preferences.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
  3. <PreferenceCategory android:title="@string/pref_storage" >
  4. <CheckBoxPreference
  5. android:defaultValue="false"
  6. android:key="pref_external_storage"
  7. android:summary="@string/pref_external_storage_summ"
  8. android:title="@string/pref_external_storage_title" />
  9. <EditTextPreference
  10. android:key="pref_external_location"
  11. android:dependency="pref_external_storage"
  12. android:title="@string/pref_external_location_title"
  13. android:defaultValue="/HOsTaGe/LogFiles/"
  14. />
  15. </PreferenceCategory>
  16. <PreferenceCategory android:title="@string/pref_upload" >
  17. <EditTextPreference
  18. android:key="pref_upload_server"
  19. android:defaultValue="https://ssi.cased.de"
  20. android:summary="@string/pref_upload_server_summ"
  21. android:title="@string/pref_upload_server" />
  22. </PreferenceCategory>
  23. <PreferenceCategory android:title="@string/pref_notification" >
  24. <CheckBoxPreference
  25. android:defaultValue="true"
  26. android:key="pref_vibration"
  27. android:summary="@string/pref_vibration_summ"
  28. android:title="@string/pref_vibration" />
  29. <RingtonePreference
  30. android:defaultValue="content://settings/system/notification_sound"
  31. android:key="pref_notification_sound"
  32. android:ringtoneType="notification"
  33. android:showDefault="true"
  34. android:showSilent="true"
  35. android:summary="@string/pref_alarm_summ"
  36. android:title="@string/pref_alarm" />
  37. </PreferenceCategory>
  38. </PreferenceScreen>