在 res/values/attrs.xml
中,我们定义了三个自定义属性:xText(文本内容)、xTextColor(文本颜色)、xTextSize(文本大小)。
<declare-styleable name="MyTextView">
<attr name="xText" format="string"/>
<attr name="xTextColor" format="color"/>
<attr name="xTextSize" format="dimension"/>
</declare-styleable>