comment_preferences.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <PreferenceScreen xmlns:tools="http://schemas.android.com/tools"
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. tools:context=".SettingsActivity"
  5. android:icon="@null">
  6. <PreferenceCategory
  7. android:title="自动回复(Android 5.0以上系统)"
  8. android:layout="@layout/preference_category">
  9. <CheckBoxPreference
  10. android:defaultValue="false"
  11. android:key="pref_comment_switch"
  12. android:layout="@layout/preference_checkbox"
  13. android:persistent="false"
  14. android:summary="在拆开其他人的红包后发送自动回复"
  15. android:title="开启自动回复" />
  16. </PreferenceCategory>
  17. <PreferenceCategory
  18. android:title="回复选项"
  19. android:layout="@layout/preference_category">
  20. <xyz.monkeytong.hongbao.activities.SeekBarPreference
  21. android:key="pref_comment_delay"
  22. android:title="延时发送回复"
  23. pref_kind="pref_comment_delay"
  24. android:layout="@layout/preference_checkbox"/>
  25. <CheckBoxPreference
  26. android:key="pref_comment_at"
  27. android:title="\@发红包的人"
  28. android:layout="@layout/preference_checkbox"
  29. android:defaultValue="false"/>
  30. <EditTextPreference
  31. android:key="pref_comment_words"
  32. android:title="自定义回复内容"
  33. android:summary="@string/pref_comment_words_summary"
  34. android:layout="@layout/preference_checkbox"/>
  35. </PreferenceCategory>
  36. </PreferenceScreen>