自定义View(二)--继承自ViewGroup
自定义View包括很多种,上一次随笔中的那一种是完全继承自View,这次写的这个小Demo是继承自ViewGroup的,主要是将自定义View继承自ViewGroup的这个流程来梳理一下,这次的Demo中自定义了一个布局的效果,并且这个自定义布局中包含布局自己的属性,布局中的控件也包含只属于这个布局才具有的自定义属性(类似于layout_weight只存在于LinearLayout中,只有LinearLayout中的控件可以使用一样)。话不多说,先看效果图:
其中红色的部分是自定义的ViewGroup,这里使用了wrap_content,所以包裹内容。
我的思路是这样的:
先自定义一个类,继承自ViewGroup,继承自ViewGroup的自定义类,一定要重写onLayout()方法,因为这是一个抽象方法,主要作用就是用来绘制子View视图,确定ViewGroup中的每个子控件的位置。然后再重写其两个构造函数,一个是一个参数的,一个是两个参数的。继承自ViewGroup与继承自View有些不同的地方,我们在重写onMeasure()的时候,不仅仅要测量自定义的父布局(本自定义View)的尺寸,还要在其中计算其子View的尺寸信息,这是比较麻烦的地方,计算完尺寸还要再onLayout()方法中根据计算出来的控件的摆放位置,调用 子View.layout(int left,int top,int right,int bottom)方法将控件绘制在ViewGroup上,其中的四个参数为子View控件的左上角的点的坐标和右下角的点的坐标信息。这里我们为子View定义了两个自定义属性,实现类似margin的效果,而只要定义了子控件的这类属性,就要自定义一个内部类,继承自MarginLayoutParams类,在这里获取我们在xml中设置的属性信息。也就是主要的方法和与继承自View的自定义View中不同的就是onMeasure()方法,自定义类继承自MarginLayoutParams,onLayout()方法,generateLayoutParams()方法。还不是有点懵?来看看代码,如果是在不懂,可以把代码拷贝到工程中自己改改属性试一下,就会明白不少!
attr.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--声明自定义属性 自定义ViewGroup的属性 -->
<declare-styleable name="CascadeViewGroup">
<attr name="verticalSpacing" format="dimension|reference"></attr>
<attr name="horizontalSpacing" format="dimension|reference"></attr>
</declare-styleable>
<!--以下自定义属性针对自定义CascadeViewGroup布局中的子控件设置的属性-->
<declare-styleable name="CascadeViewGroup_LayoutParams">
<attr name="layout_paddingLeft" format="dimension|reference"></attr>
<attr name="layout_paddingTop" format="dimension|reference"></attr>
</declare-styleable>
</resources>
自定义View类:
package com.example.customviewgroup; import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup; /**
*/
public class CascadeViewGroup extends ViewGroup{
//声明自定义布局中的子控件距离父布局的间距的宽度和高度
private int mHoriztonalSpacing;
private int mVerticalSpacing; public CascadeViewGroup(Context context) {
super(context);
} public CascadeViewGroup(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray array=context.obtainStyledAttributes(attrs,R.styleable.CascadeViewGroup);
mHoriztonalSpacing=array.getDimensionPixelSize(
R.styleable.CascadeViewGroup_horizontalSpacing,R.dimen.default_horizontal_spacing);
mVerticalSpacing=array.getDimensionPixelSize(
R.styleable.CascadeViewGroup_verticalSpacing,R.dimen.default_vertical_spacing);
array.recycle();
} /**
* onMeasure 测量自身大小 测量子view的大小
* 并且将子view信息保存到LayoutParams中
*/
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
//获取viewgroup中子view 的个数
int count=this.getChildCount();
//获取当前光标的坐标位置 横坐标 纵坐标
int width=getPaddingLeft();
// Log.d("Tag", "base-width: "+width);
int height=this.getPaddingTop();
// Log.d("Tag", "base-height: "+height);
for(int i=0;i<count;i++){
View currentView=getChildAt(i);
//测量每个子view的宽度和高度
measureChild(currentView,widthMeasureSpec,heightMeasureSpec);
LayoutParams lp= (LayoutParams) currentView.getLayoutParams();
//判断子view是否设置自定义属性padding
if(lp.mSettingPaddingLeft!=0){
width+=lp.mSettingPaddingLeft;
}
if(lp.mSettingPaddingTop!=0){
height+=lp.mSettingPaddingTop;
}
//获取子view的起始点坐标
lp.x=width;
lp.y=height;
width+=mHoriztonalSpacing+currentView.getMeasuredWidth();
height+=mVerticalSpacing+currentView.getMeasuredHeight();
}
//因为最后一次循环多加上了一个mHoriztonalSpacing和mVerticalSpacing,
// 所以父布局的wrap_content情况的话需要减掉一个mHoriztonalSpacing和mVerticalSpacing
width+=getPaddingRight()-mHoriztonalSpacing;
height+=getPaddingBottom()-mVerticalSpacing;
//设置自定义ViewGroup的宽度和高度
//resolveSize()主要就是根据指定的尺寸大小和模式 返回需要的大小值
// 自动判断是哪一种模式,并返回需要的尺寸大小(match_parent或者是指定大小或者是wrap_content)
setMeasuredDimension(resolveSize(width,widthMeasureSpec),
resolveSize(height,heightMeasureSpec));
} /**
* 如果想在自定义ViewGroup中使用margin设置间距,则要在自定义类中重写generateLayoutParams系列方法才行
* @return
*/
@Override
protected ViewGroup.LayoutParams generateDefaultLayoutParams() {
return new LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.MATCH_PARENT);
} @Override
public ViewGroup.LayoutParams generateLayoutParams(AttributeSet attrs) {
return new LayoutParams(this.getContext(),attrs);
} @Override
protected ViewGroup.LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) {
return new LayoutParams(p);
} /**
* 以内部类的形式自定义LayoutParams 方便测量子view时保存子控件使用的属性值
* 当ViewGroup中的子控件中有自己独特的属性的时候才重写自定义一个类LayoutParams继承自MarginLayoutParams
*/
public static class LayoutParams extends MarginLayoutParams{
//记录子view的起始点
int x;
int y;
//子控件的自定义属性,这里的效果相当于margin的效果
int mSettingPaddingLeft;
int mSettingPaddingTop; public LayoutParams(Context c, AttributeSet attrs) {
super(c, attrs);
TypedArray array=c.obtainStyledAttributes(attrs,R.styleable.
CascadeViewGroup_LayoutParams);
mSettingPaddingLeft=array.getDimensionPixelSize(R.styleable.
CascadeViewGroup_LayoutParams_layout_paddingLeft,0);
mSettingPaddingTop=array.getDimensionPixelSize(
R.styleable.CascadeViewGroup_LayoutParams_layout_paddingTop,0);
array.recycle();
} public LayoutParams(int width, int height) {
super(width, height);
} public LayoutParams(MarginLayoutParams source) {
super(source);
} public LayoutParams(ViewGroup.LayoutParams source) {
super(source);
}
} /**
* 确定布局子view的位置
*/
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
int count=getChildCount();
for(int i=0;i<count;i++){
View currentView=getChildAt(i);
LayoutParams lp= (LayoutParams) currentView.getLayoutParams();
currentView.layout(lp.x,lp.y,lp.x+currentView.getMeasuredWidth(),
lp.y+currentView.getMeasuredHeight());
}
}
}
布局文件:
<?xml version="1.0" encoding="utf-8"?>
<com.example.customviewgroup.CascadeViewGroup
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ff0000"
app:horizontalSpacing="10dp"
app:verticalSpacing="10dp"
> <!--<TextView-->
<!--android:layout_width="100dp"-->
<!--android:layout_height="wrap_content"-->
<!--android:background="#ff0000"-->
<!--android:textSize="20sp"-->
<!--android:text="打发打发斯蒂芬" />--> <TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#00ff00"
android:textSize="20sp"
android:text="Hello World!" /> <TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#00ffff"
android:textSize="20sp"
android:text="Hello World!" /> <TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#0000ff"
android:textSize="20sp"
android:text="Hello World!" />
</com.example.customviewgroup.CascadeViewGroup>
基本上就这么多,但是会有一个小Bug,目前还不太清楚是怎么回事,就是在布局文件的根布局下如果不指定我们自定义的app:horizontalSpacing="10dp"和app:verticalSpacing="10dp"这两个属性,在自定义View的第40行和第42行getPaddingLeft()和getPaddingTop()的时候会得到一个非常大的值,即使我们指定了padding的值也是这样,也就是说必须设定这两个自定义属性,我们设置的默认padding没有起作用。不想有间距的话可以设成0dp,这个坑我找到解决办法之后再来填。
自定义View(二)--继承自ViewGroup的更多相关文章
- 自定义view(二)
1.View 的绘制 通过继承View 并重写它的onDraw()来完成绘制. onDraw()有一个参数,就是Canvas对象.使用这个Canvas就可以绘制图像了,Canvas canvas = ...
- 自定义控件(视图)2期笔记09:自定义视图之继承自ViewGroup(仿ViewPager效果案例)
1. 这里我们继承已有ViewGroup实现自定义控件,模拟出来ViewPager的效果,如下: (1)实现的效果图如下: (2)实现步骤: • 自定义view继承viewGroup • 重写onLa ...
- 自定义View(一)-ViewGroup实现优酷菜单
自定义View的第一个学习案例 ViewGroup是自动以View中比较常用也比较简单的一种方式,通过组合现有的UI控件,绘制出一个全新的View 效果如下: 主类实现如下: package com. ...
- Android自定义View (二) 进阶
转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/24300125 继续自定义View之旅,前面已经介绍过一个自定义View的基础的例 ...
- Android 自定义View (二) 进阶
转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/24300125 继续自定义View之旅,前面已经介绍过一个自定义View的基础的例 ...
- 自定义View(四) ViewGroup 动态添加变长Tag标签 支持自动换行
欲实现如下效果: 思路很简单就2步: 1.测量出ViewGroup的大小 2.找出子View的位置 若要实现动态添加标签view,就要实现ViewGroup的onMeasure().onLayout( ...
- 自定义View(二),强大的Canvas
本文转自:http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2012/1212/703.html Android中使用图形处理引擎,2D部分是 ...
- Android 自定义View二(深入了解自定义属性attrs.xml)
1.为什么要自定义属性 要使用属性,首先这个属性应该存在,所以如果我们要使用自己的属性,必须要先把他定义出来才能使用.但我们平时在写布局文件的时候好像没有自己定义属性,但我们照样可以用很多属性,这是为 ...
- 自定义View Layout过程 (3)
目录 目录 1. 知识基础 具体请看我写的另外一篇文章:(1)自定义View基础 - 最易懂的自定义View原理系列 2. 作用 计算View视图的位置. 即计算View的四个顶点位置:Left.To ...
随机推荐
- SVN与CVS的区别大全(转载)
本节讲解SVN与CVS的区别,主要包括是否更好的冲突标识与处理,是否有更多的本地/离线操作以及元数据管理问题. 更好的冲突标识与处理 通过是否进行更好的冲突标识与处理看SVN与CVS的区别:C ...
- React的CSS
1.代码 <!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="U ...
- ssh2框架搭建
原文:ssh2框架搭建 struts2+spring4.0+hibernate4.0 4.x版本与3.x版本有较大区别,要配置方法须要注意,用到的jar包如下 文件结构 src/application ...
- Js 日期操作
Js获取当前日期时间及其它操作var myDate = new Date();myDate.getYear(); //获取当前年份(2位)myDate.getFullYear(); ...
- ubuntu 12.04安装vncserver
1.安装桌面 apt-get install ubuntu-desktop 2.安装vncserver apt-get install vnc4server 3.设置vncserver密码 vncpa ...
- Java 数据结构之ArrayList
ArrayList:数组队列,就是动态数组,可以动态的增加和减少元素.实现了ICollection和IList接口.灵活的设置数组的大小 具体的用法: 1.创建:ArrayList list = ne ...
- Windows Services Windows Services的操作
Windows Services的操作 一.服务的创建: 1.新建项目——Windows服务 2.这是每个人都会犯的错误,新建一个项目后,都会按F5(运行),就会出现如下错误: 3.安装服务有很多种方 ...
- javascript 中$符号是代表什么意思!
$符号在php中是表示变量的特征字符, 在js中它也有很多作用, 一般我们用来命名一个函数名称,获取id的 1. 首先可以用来表示变量, 比如变量 var s='asdsd'或var $s='asda ...
- zabbix接口调用注意事项--Python
不知道该怎么写,但是明显得写点什么,担心时间长了,忘记,再回顾时又要重新摸索一遍 一.Request:post params: 1. 第一层的参数处理: 第一层的参数设置为变量 2. 其他层参数格式不 ...
- Android控件系列之CheckBox
学习目的: 1.掌握在Android中如何建立CheckBox 2.掌握CheckBox的常用属性 3.掌握CheckBox选中状态变换的事件(监听器) CheckBox简介: CheckBox和Bu ...