Android 中 xml文件中的标签都是表示什么,都是内部定义好的,在哪定义的?
例如
<resources>
<declare-styleable name="Topbar">
<attr name="title" format="string"/>
<attr name="titleTextSize" format="dimension"/>
<attr name="titleTextColor" format="color"/>
<attr name="leftBackground" format="reference|color"/>
<attr name="leftText" format="string"/>
<attr name="leftTextColor" format="dimension"/>
<attr name="rightBackground" format="reference|color"/>
<attr name="rightText" format="string"/>
<attr name="rightTextColor" format="dimension"/>
</declare-styleable>
</resources>
这里的<resources>是什么
<declare-styleable>是什么意思,
<attr>呢?