preferences.xml 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <PreferenceScreen
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. >
  6. <Preference
  7. app:icon="@drawable/ic_alarm"
  8. app:key="alarmScreen"
  9. app:title="Set up alarm clock"
  10. app:fragment="fr.forum_thalie.tsumugi.preferences.AlarmFragment"
  11. />
  12. <Preference
  13. app:icon="@drawable/ic_av_timer"
  14. app:key="sleepScreen"
  15. app:title="Set sleep timer"
  16. app:fragment="fr.forum_thalie.tsumugi.preferences.SleepFragment"
  17. />
  18. <Preference
  19. app:icon="@drawable/ic_customize"
  20. app:key="CustomizeFragment"
  21. app:title="Customize app behavior"
  22. app:fragment="fr.forum_thalie.tsumugi.preferences.CustomizeFragment"
  23. />
  24. <Preference
  25. app:icon="@drawable/ic_notification"
  26. app:key="streamerNotifServiceFragment"
  27. app:title="Streamer Notification Service"
  28. app:fragment="fr.forum_thalie.tsumugi.preferences.StreamerNotifServiceFragment"
  29. />
  30. <Preference
  31. app:key="submitBug"
  32. app:title="Submit a bug (opens GitHub in a web browser)"
  33. app:icon="@drawable/ic_bug"
  34. />
  35. </PreferenceScreen>