android作画流程,View绘制流程之drawable(一)

Drawable

Drawable,Bitmap,Canvas,View之间的关系

以下纯属于个人理解,参考自文献1,文献2,文献2

Bitmap是一种像素存储介质,图像最终要保存下来要通过它。Canvas则是绘图工具,提供了2D的绘图方法,方便我们绘图。View是一种容器,装在Bitmap,将其呈现出来。Drawable:Android把可绘制的图像抽象成了Drawable,封装了一系列绘图时需要做的工作(例如设定角度、長度、大小、顏色),最后在draw()方法中用Canvas以及Bitmap绘制。那么有了疑问既然Canvas能完成绘图的工作和必要Drawable呢?其实绘图还需要Paint,来设置画笔的颜色,尺寸等属性。Drawable相当于一个框架,集合了绘图的一些列工作(Paint,Canvas,Bitmap),封装起来,方便开发者使用。

Drawable类型

Android内置了如下几种Drawable类型:ColorDrawable、GradientDrawable、BitmapDrawable、 NinePatchDrawable、InsetDrawable、ClipDrawable、ScaleDrawable、RotateDrawable、AnimationDrawable、LayerDrawable、LevelListDrawable、StateListDrawable、TransitionDrawable

在实际的开发过程中,会把使用到的资源都放置在res/drawable目录,AndroidStudio会把该目录下的资源在项目R文件中生成相应的id。当需要使用图片资源的时候,可以使用@drawable标志在xml中引用drawable资源,也可以在代码中使用id引用这些drawable资源。

drawable是内存共享的,也就是说不同地方使用同一个id,指向的是同一个drawable资源,具有相同的状态。当改变drawable资源的状态,引用该资源的地方都会改变。

ColorDrawable

ColorDrawable 是最简单的Drawable,它实际上是代表了单色可绘制区域,它包装了一种固定的颜色,当ColorDrawable被绘制到画布的时候会使用颜色填充Paint,在画布上绘制一块单色的区域。

XML

android:color="@android:color/holo_blue_light">

在xml文件中使用color作为根节点来创建ColorDrawable,它只有一个android:color属性,通过它来决定ColorDrawable的颜色,Android并没有提供修改这个颜色值的Api,所以这个颜色一旦设置之后,就不能直接修改了。

我们也可以通过java代码来创建ColorDrawable对象。Android中使用一个int类型的数据表示颜色值,通常习惯使用十六进制格式的数据表示颜色值。一个int类型包含四个字节,分别代表颜色的4个组成部分:透明度(Alpha)、红(RED)、绿(GREEN)、蓝(BLUE),每个部分由一个字节(8个bit)表示,取值范围为0~255。在xml中使用颜色时可以省略透明度(Alpha)部分,如#ff0000表示红色。但是在代码中必须要明确指出透明度(Alpha)代表的数据,如果省略了就表示完全透明的颜色,例如0xFFFF0000表示红色,而0xFF0000虽然也表示红色,但它却是完全透明的,也就是说当绘制到画布上时,看不出有任何效果。

java

ColorDrawable drawable = new ColorDrawable(0xffff0000);

GradientDrawable

GradientDrawable 表示一个渐变区域,可以实现线性渐变、发散渐变和平铺渐变效果,在Android中可以使用GradientDrawable表示很多复杂而又绚丽的界面效果。

在xml文件中使用shape作为根节点来创建GradientDrawable,它包含很多属性和子节点:

shape属性是形状定义,通过android:shape属性指定:

rectangle: 矩形,默认的形状,可以画出直角矩形、圆角矩形、弧形等

oval: 椭圆形,用得比较多的是画正圆

line: 线形,可以画实线和虚线

ring: 环形,可以画环形进度条

shape还有一些特定场合的属性,适用于android:shape属性指定为ring时生效:

android:innerRadius 内环的半径

android:innerRadiusRatio 浮点型,以环的宽度比率来表示内环的半径,默认为3,表示内环半径为环的宽度除以3,该值会被android:innerRadius覆盖

android:thickness 环的厚度

android:thicknessRatio 浮点型,以环的宽度比率来表示环的厚度,默认为9,表示环的厚度为环的宽度除以9,该值会被android:thickness覆盖

android:useLevel 一般为false,否则可能环形无法显示,只有作为LevelListDrawable使用时才设为true

子节点有:

solid: 设置形状填充的颜色,只有android:color一个属性

android:color 填充的颜色

padding: 设置内容与形状边界的内间距,可分别设置左右上下的距离

android:left 左内间距

android:right 右内间距

android:top 上内间距

android:bottom 下内间距

gradient: 设置形状的渐变颜色,可以是线性渐变、辐射渐变、扫描性渐变

android:type 渐变的类型

linear 线性渐变,默认的渐变类型

radial 放射渐变,设置该项时,android:gradientRadius也必须设置

sweep 扫描性渐变

android:startColor 渐变开始的颜色

android:endColor 渐变结束的颜色

android:centerColor 渐变中间的颜色

android:angle 渐变的角度,线性渐变时才有效,必须是45的倍数,0表示从左到右,90表示从下到上

android:centerX 渐变中心的相对X坐标,放射渐变时才有效,在0.0到1.0之间,默认为0.5,表示在正中间

android:centerY 渐变中心的相对X坐标,放射渐变时才有效,在0.0到1.0之间,默认为0.5,表示在正中间

android:gradientRadius 渐变的半径,只有渐变类型为radial时才使用

android:useLevel 如果为true,则可在LevelListDrawable中使用

corners: 设置圆角,只适用于rectangle类型,可分别设置四个角不同半径的圆角,当设置的圆角半径很大时,比如200dp,就可变成弧形边了

android:radius 圆角半径,会被下面每个特定的圆角属性重写

android:topLeftRadius 左上角的半径

android:topRightRadius 右上角的半径

android:bottomLeftRadius 左下角的半径

android:bottomRightRadius 右下角的半径

stroke: 设置描边,可描成实线或虚线。

android:color 描边的颜色

android:width 描边的宽度

android:dashWidth 设置虚线时的横线长度

android:dashGap 设置虚线时的横线之间的距离

size: 设置形状默认的大小,可设置宽度和高度

android:width 宽度

android:height 高度

实例XML:

android:shape="rectangle">

android:type="linear"

android:startColor="#E3F2FD"

android:centerColor="#90CAF9"

android:endColor="#0D47A1"

android:angle="0"/>

android:bottom="12dp"

android:left="12dp"

android:right="12dp"

android:top="12dp"/>

android:width="2dp"

android:color="@android:color/darker_gray"

android:dashGap="4dp"

android:dashWidth="4dp"/>

android:shape="oval" >

android:type="radial"

android:startColor="@android:color/holo_blue_light"

android:endColor="@android:color/holo_red_light"

android:centerColor="@android:color/holo_green_light"

android:gradientRadius="50dp"

android:centerX="1"

android:centerY="0.8"

/>

android:bottom="4dp"

android:top="4dp"

android:right="4dp"

android:left="4dp"/>

android:width="60dp"

android:height="60dp"/>

android:shape="line">

android:width="1dp"

android:color="@android:color/black"

android:dashGap="3dp"

android:dashWidth="8dp"/>

android:height="4dp"/>

当android:shape属性制定为ring时,在shape跟节点中有一些特定的属性生效:

android:innerRadius 内环的半径

android:innerRadiusRatio 浮点型,以环的宽度比率来表示内环的半径,默认为3,表示内环半径为环的宽度除以3,该值会被android:innerRadius覆盖

android:thickness 环的厚度

android:thicknessRatio 浮点型,以环的宽度比率来表示环的厚度,默认为9,表示环的厚度为环的宽度除以9,该值会被android:thickness覆盖

android:useLevel 一般为false,否则可能环形无法显示,只有作为LevelListDrawable使用时才设为true

android:innerRadiusRatio="4"

android:thicknessRatio="5"

android:shape="ring"

android:useLevel="false">

android:centerColor="@android:color/holo_green_light"

android:endColor="@android:color/holo_red_light"

android:startColor="@android:color/holo_blue_light"

android:type="sweep"/>

android:width="60dp"

android:height="60dp"/>

效果图:

c5361e1acd16

TestDrawable.png

细说Drawable和View之间的关系

每一个View包括其子类都有一个drawable成员变量。在View.java中有一个Drawable作为背景。

其实改变View图形显示的2D绘画有两种方式:

调用 View 及其子类提供的方法如 View:setBackground(Drawable),ImageView:setImageBitmap(Bitmap), 这些方法直接或间接设置相应类中的 Drawable 私有成员。

继承 View 并重载 onDraw(Canvas),回调中得到画布 Canvas,调用其一系列基本图形的绘画 draw 方法操作其 Bitmap 中的像素数据。

虽然第二种情况看似和drawable无关,其实在View.java中的draw()方法调用了drawable.draw(canvas)将背景绘制:

public class View {

...

private Drawable mBackground; // 背景

...

public void draw(Canvas canvas) {

...

// Step 1, draw the background, if needed

if (!dirtyOpaque) {

drawBackground(canvas);

}

...

}

private void drawBackground(Canvas canvas) {

final Drawable background = mBackground;

...

background.draw(canvas);

...

}

}

参考资料,资料1,资料2

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值