attrs.xml 659 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <declare-styleable name="ActionEditText">
  4. <attr name="optionOneString" format="string" />
  5. <attr name="optionOneColor" format="color" />
  6. <attr name="optionTwoString" format="string" />
  7. <attr name="optionTwoColor" format="color" />
  8. <attr name="onBadgeClick" format="string" />
  9. </declare-styleable>
  10. <string-array name="pref_behaviour_entries">
  11. <item>@string/pref_behaviour_entries_keep_file</item>
  12. <item>@string/pref_behaviour_entries_move</item>
  13. </string-array>
  14. <string-array name="pref_behaviour_entryValues">
  15. <item>NOTHING</item>
  16. <item>MOVE</item>
  17. </string-array>
  18. </resources>