attrs.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <resources>
  2. <!-- Declare custom theme attributes that allow changing which styles are
  3. used for button bars depending on the API level.
  4. ?android:attr/buttonBarStyle is new as of API 11 so this is
  5. necessary to support previous API levels. -->
  6. <declare-styleable name="ButtonBarContainerTheme">
  7. <attr name="metaButtonBarStyle" format="reference" />
  8. <attr name="metaButtonBarButtonStyle" format="reference" />
  9. </declare-styleable>
  10. <declare-styleable name="CircleView">
  11. <attr name="currencyValue" format="string" />
  12. <attr name="currencyImage" format="reference|integer" />
  13. </declare-styleable>
  14. <declare-styleable name="SquareView">
  15. <attr name="rangNumber" format="string" />
  16. <attr name="numberValue" format="string" />
  17. </declare-styleable>
  18. <declare-styleable name="RectangleView">
  19. <attr name="rangeNumber" format="string" />
  20. <attr name="bigSmallImage" format="reference|integer" />
  21. <attr name="bgImage" format="reference|integer" />
  22. </declare-styleable>
  23. <declare-styleable name="SettingButtonView">
  24. <attr name="bgDrawable" format="reference|integer" />
  25. <attr name="textIcon" format="reference|integer" />
  26. </declare-styleable>
  27. </resources>