本文主要是介绍使用declare-styleable给自定义控件添加自定义属性,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.首先,先写attrs.xml<?xml version="1.0" encoding="utf-8"?>
<resources><declare-styleable name="TestAttr"><attr name="name" format="reference" /><attr name="age"><flag name="child" value="10" /><flag name="young" value="18" /><flag name="oldman" value="60" /></attr><attr name="textSize" format="dimension" /> </declare-styleable>
</resources>reference指的是是从string.xml引用过来
flag是自己定义的,类似于 android:gravity="top"
dimension 指的是是从dimension.xml里引用过来的内容.注意,这里如果是dp那就会做像素转换2.在布局文件里的写法<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:attrstest="http://schemas.android.com/apk/res/com.arlos.attrstest"android:layout_width="fill_parent"android:layout_height="fill_parent"android:orientation="vertical" >s<com.arlos.attrstest.MyTestViewandroid:id="@+id/tvTest"android:layout_width="fill_parent"android:layout_height="wrap_content"attrstest:name="@string/myname" android:gravity="top"attrstest:age="young"attrstest:textSize="@dimen/aa"android:text="@string/hello" /></LinearLayout>2.1 先引用这个dtdxmlns:attrstest="http://schemas.android.com/apk/res/com.arlos.attrstest"
attrstest是随便写的.后面的包名是你所在的项目的根包.也就是在manifest里的com.arlos.attrstest2.2 在自定义的控件里写属性3. 最后在控件的构造方法里取得这些值
public class MyTestView extends TextView {public MyTestView(Context context, AttributeSet attrs) {super(context, attrs);TypedArray tArray = context.obtainStyledAttributes(attrs,R.styleable.TestAttr);String name = tArray.getString(R.styleable.TestAttr_name);System.out.println("name = " + name);int age = tArray.getInt(R.styleable.TestAttr_age, 200);System.out.println("age = " + age);float demin = tArray.getDimension(R.styleable.TestAttr_textSize,0);System.out.println("demin = " + demin);tArray.recycle();}
}
转载自:http://www.cnblogs.com/carlosk/archive/2012/06/06/2538336.html
这篇关于使用declare-styleable给自定义控件添加自定义属性的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!