comment_preferences.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  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:key="pref_comment_switch"
  11. android:title="开启自动回复"
  12. android:summary="在拆开其他人的红包后发送自动回复"
  13. android:defaultValue="false"
  14. android:layout="@layout/preference_checkbox"/>
  15. </PreferenceCategory>
  16. <PreferenceCategory
  17. android:title="回复选项"
  18. android:layout="@layout/preference_category">
  19. <xyz.monkeytong.hongbao.activities.SeekBarPreference
  20. android:key="pref_comment_delay"
  21. android:title="延时发送回复"
  22. pref_kind="pref_comment_delay"
  23. android:layout="@layout/preference_checkbox"/>
  24. <CheckBoxPreference
  25. android:key="pref_comment_at"
  26. android:title="\@发红包的人"
  27. android:layout="@layout/preference_checkbox"
  28. android:defaultValue="false"/>
  29. <EditTextPreference
  30. android:key="pref_comment_words"
  31. android:title="自定义回复内容"
  32. android:summary="@string/pref_comment_words_summary"
  33. android:layout="@layout/preference_checkbox"/>
  34. </PreferenceCategory>
  35. </PreferenceScreen>