参考了Google官方培训课程和鸿洋大神的博客,下面进入正题
Googl官方建议
·遵守Android标准规则。
·提供自定义的风格属性值并能够被Android XML Layout所识别
·发出可访问的事件。
·能够兼容Android的不同平台。
常用实现2种方式
·继承View
·拓展现有控件(继承系统提供的UI组件)
自定义View的流程
1.继承View或者继承View的一个实现类
- 至少重写父类的一个构造方法
它包含一个Contenx与一个AttributeSet对象作为参数。这个constructor允许layout editor创建并编辑你的view的实例。
public RoundImageView(Context context, AttributeSet attrs) {
super(context, attrs);
getAttrs(context,attrs);
}
2.定义自定义属性
Gogle官方建议:
·为你的view在资源标签下定义自设的属性
·在你的XML layout中指定属性值
·在运行时获取属性值
·把获取的属性值应用到你的view上如何定义?
在vuales文件夹下新建attrs.xml文件,定义自定义View需要的属性,可以通过构造方法的 atts参数获取
<resources>
<declare-styleable name="RoundImageView">
<attr name="XfermodeImageView_src" format="reference"/>
<attr name="XfermodeImageView_type" format="integer"/>
<attr name="XfermodeImageView_borderRadius" format="dimension"/>
</declare-styleable>
</resources>-
如何使用?
在使用自定义的属性时要声明相应的命名空间:<com.wenjie.drawview.RoundImageView xmlns:custom="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="wrap_content" custom:XfermodeImageView_src="@mipmap/test2" />
请注意:如果你的view是一个inner class,你必须指定这个view的outer class.同样的,如果PieChart有一个inner class叫做PieView。为了使用这个类中自设的属性,你应该使用com.example.customviews.charting.PieChart$PieView.
-
如何获取属性并且应用?
对res目录里的每一个<declare-styleable>资源,自动生成的R.java文件定义了存放属性ID的数组和常量,常量用来索引数组中每个属性。因此我们可以使用TypedArray这个类来读取属性:(为了方便,下面的代码比较简单)
public CustomView(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray a = context.getTheme().obtainStyledAttributes(
attrs,
R.styleable.CustomView,
0, 0);
try {
mShowText =a.getBoolean(R.styleable.CustomView_showText, false);
mTextPos = a.getInteger(R.styleable.CustomView_labelPosition, 0);
} finally {
a.recycle();
}
}
TypedArray对象是一个共享资源,必须被在使用后进行回收。
-
添加属性和事件
public boolean isShowText() {
return mShowText;
}public void setShowText(boolean showText) { mShowText = showText; invalidate(); requestLayout(); }
注意点:在setShowText方法里面有调用invalidate()) and requestLayout()). 这两个调用是确保稳定运行的关键。当view的某些内容发生变化的时候,需要调invalidate来通知系统对这个view进行redraw,当某些元素变化会引起组件大小变化时,需要调用requestLayout方法。调用时若忘了这两个方法,将会导致hard-to-find bugs。
- 响应事件的监听器
如果需要额外的事件,可以通过接口回调的方式来设置事件监听,一般可以定义一个内部接口.
3.需要warp_content属性时:在onMeasure()方法中判断测量模式为AT_MOST时,设定一个值。
4.实现onDraw()方法:在这里绘制