自定义属性_TypedArray

来源:互联网 发布:python recv 最大值 编辑:程序博客网 时间:2024/06/05 13:34

TypedArray


一般情况下,在设置控件属性时,我们用得时Android系统自带的属性。但有时,我们会自定义一些控件,这些控件需要一些额外的属性。
1. 在项目文件res/value下创建attr.xml文件,该文件中可包含若干个attr集合

<?xml version="1.0" encoding="utf-8"><resources>    <declare-styleable name="MyView">        <attr name="myTextSize" format="dimension"/>        <attr name="myColor" format="color"/>    </declare-styleable></resources>
解释 resources 根标签 declare-styleable name=”MyView” name定义了变量名称 attr name=”myTextSize” format=”dimension” formate 属性类型,dimension表示只能表示字体大小 formate其它属性 reference 引用,参考某一资源id string 字符串 color 颜色值 dimension 尺寸值 boolean 布尔值 integer 整型值 float 浮点值 fraction 百分数 enum 枚举值 flag 位运算

2. 在自定义View的代码中引入自定义属性,修改构造函数

  • context通过调用obtainStyledAttributes方法来获取一个TypeArray,然后由该TypeArray来对属性进行设置
  • obtainStyledAttributes方法有三个,常用obtainStyledAttributes(int[] attrs),其参数直接styleable中获得
  • 调用结束后务必调用recycle()方法,否则这次的设定会对下次的使用造成影响
package com.eyu.attrtextdemo;  import android.content.Context;  import android.content.res.TypedArray;  import android.graphics.Canvas;  import android.graphics.Paint;  import android.graphics.Paint.Style;  import android.util.AttributeSet;  import android.view.View;  public class MyView extends View{      public Paint paint;      public MyView(Context context, AttributeSet attrs) {          super(context, attrs);          paint = new Paint();          TypedArray a = context.obtainStyledAttributes(attrs,R.styleable.MyView);              int textColor = a.getColor(R.styleable.MyView_myColor, 003344);          float textSize = a.getDimension(R.styleable.MyView_myTextSize, 33);          paint.setTextSize(textSize);          paint.setColor(textColor);          a.recycle();      }      public MyView(Context context) {          super(context);          // TODO Auto-generated constructor stub      }      @Override    protected void onDraw(Canvas canvas) {          // TODO Auto-generated method stub          super.onDraw(canvas);             paint.setStyle(Style.FILL);          canvas.drawText("aaaaaaa", 10, 50, paint);      }        }  

3.己定义的view的属性中,就可以使用自己在attr中定义的属性啦,例如:

<com.eyu.attrtextdemo.MyView          android:layout_height="wrap_content"          android:layout_width="wrap_content"          myapp:myTextSize="20sp"          myapp:myColor="#324243"/>  
0 0
原创粉丝点击