android自定义组件
官方文档 /Myselfcomponent/res/values/attrs.xml 1 2 3 4 5 6 7 8 9 <?xmlversion= "1.0" encoding= "utf-8" ?> <resources> <declare-styleablename= "MyView" > <attrname= "textColor" format= "color" /> <attrname= "textSize" format= "dimension" /> <attrname= "text" format= "string" ></attr> </declare-styleable> </resources> activity_main.xml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 <RelativeLayoutxmlns:android= "http:...