attrs.xml 734 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources xmlns:tools="http://schemas.android.com/tools">
  3. <attr name="popupTextAlignment" format="enum" tools:ignore="ResourceName">
  4. <enum name="start" value="0" />
  5. <enum name="end" value="1" />
  6. <enum name="center" value="2" />
  7. </attr>
  8. <declare-styleable name="NiceSpinner" tools:ignore="ResourceName">
  9. <attr name="arrowTint" format="color" />
  10. <attr name="hideArrow" format="boolean" />
  11. <attr name="arrowDrawable" format="reference|color" />
  12. <attr name="backgroundSelector" format="integer" />
  13. <attr name="popupTextAlignment" />
  14. <attr name="entries" format="reference" />
  15. </declare-styleable>
  16. </resources>