attrs.xml多个item名字相同的解决办法

前端之家收集整理的这篇文章主要介绍了attrs.xml多个item名字相同的解决办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

只需要抽出来作为公共属性名就OK了

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <attr name="myattr1" format="string" />
  4. <attr name="myattr2" format="dimension" />
  5.  
  6. <declare-styleable name="MyView1">
  7. <attr name="myattr1" />
  8. <attr name="myattr2" />
  9. ...
  10. </declare-styleable>
  11.  
  12. <declare-styleable name="MyView2">
  13. <attr name="myattr1" />
  14. <attr name="myattr2" />
  15. ...
  16. </declare-styleable>
  17. </resources>

猜你在找的XML相关文章