属性名称使用小驼峰命名规则
- reference:某一资源的id
ImageView 的src属性 - color:色值
TextView 的textColor属性 - boolean: 布尔值
Button 的focusable属性 - dimension: 尺寸值
View 的layout_width - float:浮点值
ImageView 的 alpha属性 - integer: 整型
TextView 的 maxLines - string: 字符串
TextView 的text属性 - fraction: 百分数
rotate动画 的pivotX属性 - enum:枚举值
LinearLayout的orientatin属性vertical/horizontal - flag:位或运算
activity的windowSoftInputMode属性
属性定义时可以指定多种类型值:
<declare-styleable name = "名称">
<attr name = "background" format = "reference|color" />
</declare-styleable>