ca5e0da97414b1f5dac1f88de6c3f193ce8ad1ae.svn-base 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources xmlns:tools="http://schemas.android.com/tools">
  3. <!-- 仿 ios 开关按钮 -->
  4. <declare-styleable name="SwitchButton" tools:ignore="ResourceName">
  5. <!-- 是否选中 -->
  6. <attr name="android:checked" />
  7. <!-- 是否禁用 -->
  8. <attr name="android:enabled" />
  9. </declare-styleable>
  10. <!-- 设置栏 -->
  11. <declare-styleable name="SettingBar" tools:ignore="ResourceName">
  12. <!-- 左边 -->
  13. <attr name="bar_leftText" format="string"/>
  14. <attr name="bar_leftHint" format="string"/>
  15. <attr name="bar_leftIcon" format="reference" />
  16. <attr name="bar_leftColor" format="color" />
  17. <attr name="bar_leftSize" format="dimension" />
  18. <attr name="bar_leftColorHint" format="color" />
  19. <!-- 右边 -->
  20. <attr name="bar_rightText" format="string" />
  21. <attr name="bar_rightHint" format="string"/>
  22. <attr name="bar_rightIcon" format="reference" />
  23. <attr name="bar_rightColor" format="color" />
  24. <attr name="bar_rightSize" format="dimension" />
  25. <!-- 分割线 -->
  26. <attr name="bar_lineVisible" format="boolean" />
  27. <attr name="bar_lineColor" format="reference|color" />
  28. <attr name="bar_lineSize" format="dimension" />
  29. <attr name="bar_lineMargin" format="dimension" />
  30. </declare-styleable>
  31. <!-- 自定义数字进度条 -->
  32. <declare-styleable name="NumberProgressBar" tools:ignore="ResourceName">
  33. <attr name="pb_progress" format="integer"/>
  34. <attr name="pb_maxProgress" format="integer"/>
  35. <attr name="pb_textSize" format="dimension"/>
  36. <attr name="pb_textColor" format="color"/>
  37. <attr name="pb_textOffset" format="dimension"/>
  38. <attr name="pb_unreachedColor" format="color"/>
  39. <attr name="pb_reachedColor" format="color"/>
  40. <attr name="pb_reachedHeight" format="dimension"/>
  41. <attr name="pb_unreachedHeight" format="dimension"/>
  42. </declare-styleable>
  43. </resources>