转载请标明出处:http://blog.csdn.net/lib739449500/article/details/43229487
Android中自定义属性的使用,步骤如下:
一、在res/values文件下定义一个attrs.xml文件,代码如下:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="myButton">
<attr name="myButtonBackgroundColor" format="color" />
<attr name="myButtonText" format="string" />
<attr name="myButtonTextColor" format="color" />
</declare-styleable>
</resources>
二、在布局xml中如下使用该属性:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:myButton="http://schemas.android.com/apk/res/com.example.myAttr"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<com.example.myAttr.MyButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
myButton:myButtonBackgroundColor="#abcedf"
myButton:myButtonText="自定义属性测试"
myButton:myButtonTextColor="#fdecba">
</com.example.myAttr.MyButton>
</RelativeLayout>
三、在自定义组件中,可以如下获得xml中定义的值:
//获取自定义属性值
TypedArray a = context.obtainStyledAttributes(attrs,
R.styleable.myButton, defStyle, 0);
int myButtonBackgroundColor = a.getColor(
R.styleable.myButton_myButtonBackgroundColor, 0xff0000);
String buttonText = a.getString(R.styleable.myButton_myButtonText);
int myButtonTextColor = a.getColor(
R.styleable.myButton_myButtonTextColor, 0xff0000);
a.recycle();//记得释放资源
//设置自定义属性
setText(buttonText);
setBackgroundColor(myButtonBackgroundColor);
setTextColor(myButtonTextColor);
效果图如下:
这样即可设置view的颜色,背景色,文本内容。
*********************************************************************
基本用法已经讲完了,现在来看看一些注意点和知识点
首先来看看attrs.xml文件。该文件是定义属性名和格式的地方,需要用<declare-styleable name="myButton"></declare-styleable>包围所有属性。其中name为该属性集的名字,主要用途是标识该属性集。那在什么地方会用到呢?主要是在第三步。看到没?在获取某属性标识时,用到"R.styleable.myButton"。
在来看看各种属性都有些什么类型吧:string , integer , dimension , reference , color , enum.
前面几种的声明方式都是一致的,例如:<attr name="myButtonTextColor" format="integer"/>。
只有enum是不同的,用法举例:
<attr name="testEnum">
<enum name="fill_parent" value="-1"/>
<enum name="wrap_content" value="-2"/>
</attr>
如果该属性可同时传两种不同的属性,则可以用“|”分割开即可。
让我们再来看看布局xml中需要注意的事项。
首先得声明一下:xmlns:myButton="http://schemas.android.com/apk/res/com.example.myAttr
注意,“myButton”可以换成其他的任何名字,后面的url地址必须最后一部分必须用上自定义组件的包名。自定义属性了,在属性名前加上“myButton”即可。
最后来看看java代码中的注意事项。
在自定义组件的构造函数中,用
TypedArray a = context.obtainStyledAttributes(attrs,
R.styleable.myButton, defStyle, 0);
来获得对属性集的引用,然后就可以用“a”的各种方法来获取相应的属性值了。这里需要注意的是,如果使用的方法和获取值的类型不对的话,则会返回默认值。因此,如果一个属性是带两个及以上不用类型的属性,需要做多次判断,知道读取完毕后才能判断应该赋予何值。当然,在取完值的时候别忘了回收资源哦