attrs.xml 855 B

123456789101112131415
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <declare-styleable name="MutiProgress">
  4. <attr name="nodesNum" format="integer"/> <!-- 节点数量 -->
  5. <attr name="nodeRadius" format="dimension"/>
  6. <attr name="progressingDrawable" format="reference"></attr>
  7. <attr name="unprogressingDrawable" format="reference" /> <!-- 未完成的节点图标 -->
  8. <attr name="progresFailDrawable" format="reference" />
  9. <attr name="progresSuccDrawable" format="reference" />
  10. <attr name="processingLineColor" format="color"></attr>
  11. <attr name="currNodeNO" format="integer"></attr> <!-- 当前所到达的节点编号 0开始计算-->
  12. <attr name="currNodeState" format="integer"></attr> <!-- 当前所到达的节点状态,0:失败 1:成功 -->
  13. </declare-styleable>
  14. </resources>