• 欢迎访问风的记忆博客网站,如有疑问请加作者QQ或者微信联系。作者QQ:524100248,微信号:sendtion。

Android如何使用自定义的XML属性?

安卓教程 sendtion 9年前 (2016-03-16) 3521次浏览 已收录 0个评论 扫描二维码
文章目录[隐藏]

一. 什么是自定义 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
&lt;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"
    &gt;

    &lt;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"/&gt;

&lt;/RelativeLayout&gt;

注意,自定义的 XML 属性必须给自定义的控件使用。


风的记忆 , 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Android 如何使用自定义的 XML 属性?
喜欢 (0)
[sendtion@126.com]
分享 (0)
sendtion
关于作者:
一个不断奋斗追逐梦想的少年~
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址