您的位置:首页 > 移动开发 > Android开发

Android 自定义View (一)

2015-06-28 22:31 453 查看
转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/24252901

Android自定义View实现很简单

继承View,重写构造函数、onDraw,(onMeasure)等函数。

如果自定义的View需要有自定义的属性,需要在values下建立attrs.xml。在其中定义你的属性。

在使用到自定义View的xml布局文件中需要加入xmlns:前缀="http://schemas.android.com/apk/res/你的自定义View所在的包路径".

在使用自定义属性的时候,使用前缀:属性名,如my:textColor="#FFFFFFF"。

很多的Android入门程序猿来说对于Android自定义View,可能都是比较恐惧的,但是这又是高手进阶的必经之路,所有准备在自定义View上面花一些功夫,多写一些文章。先总结下自定义View的步骤:

1、自定义View的属性

2、在View的构造方法中获得我们自定义的属性

[ 3、重写onMesure ]

4、重写onDraw

我把3用[]标出了,所以说3不一定是必须的,当然了大部分情况下还是需要重写的。

1、自定义View的属性,首先在res/values/ 下建立一个attrs.xml , 在里面定义我们的属性和声明我们的整个样式。

[html] view
plaincopy





<?xml version="1.0" encoding="utf-8"?>

<resources>

<attr name="titleText" format="string" />

<attr name="titleTextColor" format="color" />

<attr name="titleTextSize" format="dimension" />

<declare-styleable name="CustomTitleView">

<attr name="titleText" />

<attr name="titleTextColor" />

<attr name="titleTextSize" />

</declare-styleable>

</resources>

我们定义了字体,字体颜色,字体大小3个属性,format是值该属性的取值类型:

一共有:string,color,demension,integer,enum,reference,float,boolean,fraction,flag;不清楚的可以google一把。

然后在布局中声明我们的自定义View

[objc] view
plaincopy





<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:tools="http://schemas.android.com/tools"

xmlns:custom="http://schemas.android.com/apk/res/com.example.customview01" //命名空间叫custom

android:layout_width="match_parent"

android:layout_height="match_parent" >

<com.example.customview01.view.CustomTitleView

android:layout_width="200dp"

android:layout_height="100dp"

custom:titleText="3712"

custom:titleTextColor="#ff0000"

custom:titleTextSize="40sp" />

</RelativeLayout>

一定要引入 xmlns:custom="http://schemas.android.com/apk/res/com.example.customview01"我们的命名空间,后面的包路径指的是项目的package

2、在View的构造方法中,获得我们的自定义的样式

[java] view
plaincopy





public class CustomTitleView extends View

{

/**

* 文本

*/

private String mTitleText;

/**

* 文本的颜色

*/

private int mTitleTextColor;

/**

* 文本的大小

*/

private int mTitleTextSize;

/**

* 绘制时控制文本绘制的范围

*/

private Rect mBound;

private Paint mPaint;

public CustomTitleView(Context context, AttributeSet attrs)

{

this(context, attrs, 0);
//this是调用兄弟构造函数,super调用父类构造函数

}

public CustomTitleView(Context context)

{

this(context, null);

}

/**

* 获得我自定义的样式属性

*

* @param context

* @param attrs

* @param defStyle

*/

public CustomTitleView(Context context, AttributeSet attrs, int defStyle)

{

super(context, attrs, defStyle);

/**

* 获得我们所定义的自定义样式属性

*/

TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.CustomTitleView, defStyle, 0);

int n = a.getIndexCount();

for (int i = 0; i < n; i++)

{

int attr = a.getIndex(i);

switch (attr)

{

case R.styleable.CustomTitleView_titleText:

mTitleText = a.getString(attr);

break;

case R.styleable.CustomTitleView_titleTextColor:

// 默认颜色设置为黑色

mTitleTextColor = a.getColor(attr, Color.BLACK);

break;

case R.styleable.CustomTitleView_titleTextSize:

// 默认设置为16sp,TypeValue也可以把sp转化为px

mTitleTextSize = a.getDimensionPixelSize(attr, (int) TypedValue.applyDimension(

TypedValue.COMPLEX_UNIT_SP, 16, getResources().getDisplayMetrics()));

break;

}

}

a.recycle();

/**

* 获得绘制文本的宽和高

*/

mPaint = new Paint();

mPaint.setTextSize(mTitleTextSize);

// mPaint.setColor(mTitleTextColor);

mBound = new Rect();

mPaint.getTextBounds(mTitleText, 0, mTitleText.length(), mBound);

}

我们重写了3个构造方法,默认的布局文件调用的是两个参数的构造方法,所以记得让所有的构造调用我们的三个参数的构造,我们在三个参数的构造中获得自定义属性。

3、我们重写onDraw,onMesure调用系统提供的:

[java] view
plaincopy





@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)

{

super.onMeasure(widthMeasureSpec, heightMeasureSpec);

}

@Override

protected void onDraw(Canvas canvas)

{

mPaint.setColor(Color.YELLOW);

canvas.drawRect(0, 0, getMeasuredWidth(), getMeasuredHeight(), mPaint);

mPaint.setColor(mTitleTextColor);

canvas.drawText(mTitleText, getWidth() / 2 - mBound.width() / 2, getHeight() / 2 + mBound.height() / 2, mPaint);

}

此时的效果是:



是不是觉得还不错,基本已经实现了自定义View。但是此时如果我们把布局文件的宽和高写成wrap_content,会发现效果并不是我们的预期



系统帮我们测量的高度和宽度都是MATCH_PARNET,当我们设置明确的宽度和高度时,系统帮我们测量的结果就是我们设置的结果,当我们设置为WRAP_CONTENT,或者MATCH_PARENT系统帮我们测量的结果就是MATCH_PARENT的长度。

所以,当设置了WRAP_CONTENT时,我们需要自己进行测量,即重写onMesure方法”:

重写之前先了解MeasureSpec的specMode,一共三种类型:

EXACTLY:一般是设置了明确的值或者是MATCH_PARENT

AT_MOST:表示子布局限制在一个最大值内,一般为WARP_CONTENT

UNSPECIFIED:表示子布局想要多大就多大,很少使用

下面是我们重写onMeasure代码:

[java] view
plaincopy





@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)

{

int widthMode = MeasureSpec.getMode(widthMeasureSpec);

int widthSize = MeasureSpec.getSize(widthMeasureSpec);

int heightMode = MeasureSpec.getMode(heightMeasureSpec);

int heightSize = MeasureSpec.getSize(heightMeasureSpec);

int width;

int height ;

if (widthMode == MeasureSpec.EXACTLY)

{

width = widthSize;

} else

{

mPaint.setTextSize(mTitleTextSize);

mPaint.getTextBounds(mTitle, 0, mTitle.length(), mBounds);

float textWidth = mBounds.width();

int desired = (int) (getPaddingLeft() + textWidth + getPaddingRight());

width = desired;

}

if (heightMode == MeasureSpec.EXACTLY)

{

height = heightSize;

} else

{

mPaint.setTextSize(mTitleTextSize);

mPaint.getTextBounds(mTitle, 0, mTitle.length(), mBounds);

float textHeight = mBounds.height();

int desired = (int) (getPaddingTop() + textHeight + getPaddingBottom());

height = desired;

}

setMeasuredDimension(width, height);

}

现在我们修改下布局文件:

[html] view
plaincopy





<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:tools="http://schemas.android.com/tools"

xmlns:custom="http://schemas.android.com/apk/res/com.example.customview01"

android:layout_width="match_parent"

android:layout_height="match_parent" >

<com.example.customview01.view.CustomTitleView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

custom:titleText="3712"

android:padding="10dp"

custom:titleTextColor="#ff0000"

android:layout_centerInParent="true"

custom:titleTextSize="40sp" />

</RelativeLayout>

或者这样写

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)

{

// super.onMeasure(widthMeasureSpec, heightMeasureSpec);

int width = 0;

int height = 0;

/**

* 设置宽度

*/

int specMode = MeasureSpec.getMode(widthMeasureSpec);

int specSize = MeasureSpec.getSize(widthMeasureSpec);

switch (specMode)

{

case MeasureSpec.EXACTLY:// 明确指定了 宽度值

width = getPaddingLeft() + getPaddingRight() + specSize;

break;

case MeasureSpec.AT_MOST:// 一般为WARP_CONTENT

width = getPaddingLeft() + getPaddingRight() + mBound.width();

break;

}

/**

* 设置高度

*/

specMode = MeasureSpec.getMode(heightMeasureSpec);

specSize = MeasureSpec.getSize(heightMeasureSpec);

switch (specMode)

{

case MeasureSpec.EXACTLY:// 明确指定了高度值

height = getPaddingTop() + getPaddingBottom() + specSize;

break;

case MeasureSpec.AT_MOST:// 一般为WARP_CONTENT

height = getPaddingTop() + getPaddingBottom() + mBound.height();

break;

}

setMeasuredDimension(width, height);

}

现在的效果是:



完全复合我们的预期,现在我们可以对高度、宽度进行随便的设置了,基本可以满足我们的需求。

当然了,这样下来我们这个自定义View与TextView相比岂不是没什么优势,所有我们觉得给自定义View添加一个事件:

在构造中添加:

[java] view
plaincopy





this.setOnClickListener(new OnClickListener()

{

@Override

public void onClick(View v)

{

mTitleText = randomText();

postInvalidate();

}

});

[java] view
plaincopy





private String randomText()

{

Random random = new Random();

Set<Integer> set = new HashSet<Integer>();

while (set.size() < 4)

{

int randomInt = random.nextInt(10);

set.add(randomInt);

}

StringBuffer sb = new StringBuffer();

for (Integer i : set)

{

sb.append("" + i);

}

return sb.toString();

}

下面再来运行:



我们添加了一个点击事件,每次让它随机生成一个4位的随机数,有兴趣的可以在onDraw中添加一点噪点,然后改写为验证码,是不是感觉很不错。

好了,各位学习的,打酱油的留个言,顶个呗~


源码点击此处下载


【转】对AttributeSet和defStyle的理解



在通过xml文件构造view组件的时候,往往都要使用到AttributeSet和defStyle这个两个参数,例如Button组件的构造方法Button(Context ctx, AttributeSet attrs, int defStyle)中,ctx会调用obtainStyledAttributes( AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes)方法获得一个TypedArray,然后根据这个TypeArray来设置组件的属性。obtainStyledAttributes这类方法有好几个,真正的实现是Resources.Theme类,分别是:

(1) obtainStyledAttributes( AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) : TypedArray

(2) obtainStyledAttributes( int resid, int[] attrs) : TypeArray

(3) obtainStyledAttributes(int[] attrs) : TypeArray

在方法(1)里根据attrs确定要获取哪些属性,然后依次通过其余3个参数来取得相应的属性值,属性值获取的优先级从高到低依次是set, defStyleAttr, defStyleRes. defStyleAttr是一个reference, 它指向当前Theme中的一个style, style其实就是各种属性的集合,如果defStyleAttr为0或者在Theme中没有找到相应的style,
则才会尝试从defStyleRes获取属性值,defStyleRes表示的是一个style的id, 当它为0时也无效。方法(2)和(3)分别表示从style或Theme里获取属性值。

attr是在/res/values/attrs.xml文件下定义的,除了系统组件本身的属性,我们也可以自定义属性,然后在layout布局中使用。attrs.xml里通常包括若干个attr集合,例如

<declare-styleable name="LabelView">

<attr name="text" format="string" />

<attr name="textColor" format="color" />

<attr name="textSize" format="dimension" />

</declare-styleable>

就表示一个attr集合,declare-styleable标签里的name值表示的就是上面方法里的attrs参数,android会自动在R文件中生成一个数组, 它可以使任意的不一定要是view组件名称。在集合里定义每个属性的名称和它的类型,据偶所见总共有reference, string, color, dimension, boolean等,如果允许多个类型可以用"|"来隔开,比如reference | color, attr还可以这样定义

<attr name="layout_height" format="dimension">

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/czh0766/archive/2010/09/28/5912237.aspx
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: