一. 什么是自定义 XML 属性
在我们使用自定义的控件时,很多时候都需要定义一些不同于一般的 XML 属性前缀(如 android:layout_width)的属性,比如这样 app:textColor,这些就是自定义控件需要用到的自定义控件属性。
二. 自定义 XML 属性有什么用
自定义 XML 属性的作用在于,在采取自定义的控件时,很多时候,系统的一般 XML 属性已经不能满足需求,比如我们在做一个具有描边效果的 TextView 时,就需要有额外定义的 TextView 外边框颜色和 TextView 内部颜色两种颜色。这时候,使用自定义 XML 属性,用户就可以很方便地在 XML 中配置额外的属性。
三. 怎么使用自定义 XML 属性
1.定义对应的属性
在 values 文件夹下新建一个 attar_custom.xml 文件:
1 2 3 4 5 6 7 8 9 | <?xml version="1.0" encoding="utf-8"?> <resources> <!-- 自定义控件的名称 --> <declare-styleable name="StrokeTextView"> <!-- 自定义的属性名称 和对应的单位 --> <attr name="outerColor" format="color|reference" /> <attr name="innnerColor" format="color|reference" /> </declare-styleable> </resources> |
2.在 XML 中定义自定义属性
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <RelativeLayout xmlns:android="<a href="http://schemas.android.com/apk/res/android" target="_blank" rel="nofollow">http://schemas.android.com/apk/res/android</a>" xmlns:tools="<a href="http://schemas.android.com/tools" target="_blank" rel="nofollow">http://schemas.android.com/tools</a>" xmlns:app="<a href="http://schemas.android.com/apk/res-auto" target="_blank" rel="nofollow">http://schemas.android.com/apk/res-auto</a>" android:layout_width="match_parent" android:layout_height="match_parent" > <com.example.demo.StrokeTextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello_world" android:textSize="28sp" app:outerColor="#000000" app:innnerColor="#ffffff" android:layout_centerInParent="true"/> </RelativeLayout> |
注意,自定义的 XML 属性必须给自定义的控件使用。