attrs.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <!-- note: to re-use an existing Android attribute not already used by the superclass, name should have prefix "android:" and do not define a format -->
  4. <declare-styleable name="PreferencesNumberPicker">
  5. <attr name="android:max" />
  6. <attr name="min" format="integer" />
  7. <attr name="scale" format="integer" />
  8. </declare-styleable>
  9. <declare-styleable name="Dial">
  10. <attr name="totalNotches" format="integer"/>
  11. <attr name="incrementPerLargeNotch" format="integer"/>
  12. <attr name="incrementPerSmallNotch" format="integer"/>
  13. <attr name="scaleColor" format="integer"/>
  14. <attr name="scaleCenterValue" format="integer"/>
  15. <attr name="scaleMinValue" format="integer"/>
  16. <attr name="angleMinValue" format="integer"/>
  17. <attr name="scaleMaxValue" format="integer"/>
  18. <attr name="angleMaxValue" format="integer"/>
  19. <attr name="rangeOkColor" format="integer"/>
  20. <attr name="rangeOkMinValue" format="integer"/>
  21. <attr name="rangeOkMaxValue" format="integer"/>
  22. <attr name="rangeWarningColor" format="integer"/>
  23. <attr name="rangeWarningMinValue" format="integer"/>
  24. <attr name="rangeWarningMaxValue" format="integer"/>
  25. <attr name="rangeErrorColor" format="integer"/>
  26. <attr name="rangeErrorMinValue" format="integer"/>
  27. <attr name="rangeErrorMaxValue" format="integer"/>
  28. <attr name="upperTitle" format="string"/>
  29. <attr name="lowerTitle" format="string"/>
  30. <attr name="unitTitle" format="string"/>
  31. <attr name="showRange" format="boolean"/>
  32. <attr name="showHand" format="boolean"/>
  33. <attr name="showGauge" format="boolean"/>
  34. </declare-styleable>
  35. </resources>