一、canvas
canvas中的方法很多,这里我们只挑常用的进行讲解说明
canvas可以绘制的对象有:
- 弧线(arcs) canvas.
- 填充颜色(argb和color)
- bitmap
- 圆(circle和oval)
- 点(point)
- 线(line)
- 矩形(rect)
- 图片(picture)
- 圆角矩形 (roundrect)
- 文本(text)
- 顶点(vertices)
- 路径(path)
绘制弧形
1
2
3
4
5
6
7
8
9
|
/** * 绘制弧形 * @param oval 绘制区域 * @param startangle 开始绘制的角度 * @param sweepangle 结束绘制的角度 * @param usecenter 是否使用中心 * @param paint 画笔 */ public void drawarc(rectf oval, float startangle, float sweepangle, boolean usecenter, paint paint) |
其中前三个参数都比较好理解,关键是第三个参数usecenter,看张图你就明白了
可以发现当usecenter=true时,弧形的区域是开始角度的点和结束角度的点和中心点连接起来的区域;而usecenter=false时,弧形区域是开始角度的点和结束角度的点直接连接起来的区域。
绘制路径
1
2
3
4
5
6
7
8
|
mpaint.setstyle(paint.style.stroke); mpaint.setstrokewidth( 3 ); path path = new path(); path.moveto( 5 , 10 ); path.lineto( 120 , 30 ); path.lineto( 44 , 66 ); path.lineto( 77 , 231 ); canvas.drawpath(path, mpaint); |
绘制路径比较简单,依次添加相应的坐标点即可,注意设置画笔的抗锯齿和style即可。
- 绘制文字路径
1
2
3
4
5
6
7
8
9
|
mpaint.setstyle(paint.style.stroke); mpaint.setstrokewidth( 3 ); path path = new path(); path.moveto( 50 , 50 ); path.lineto( 200 , 250 ); path.lineto( 300 , 450 ); path.lineto( 300 , 650 ); mpaint.settextsize( 46 ); canvas.drawtextonpath( "hi_xiaoyu_bolg_in_android" , path, 0 , 0 , mpaint); |
这个和绘制路径一样,注意设置大小,画笔粗细即可。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/** * 画圆 * @param cx 圆心x坐标 * @param cy 圆心y坐标 * @param radius 圆的半径 * @param paint */ public void drawcircle( float cx, float cy, float radius, paint paint) { } // 画圆 canvas.drawcircle( 50 , 50 , 50 , mpaint); rectf r = new rectf( 150 , 0 , 270 , 110 ); // 画矩形 canvas.drawrect(r, mpaint); rectf oval = new rectf( 0 , 120 , 50 , 270 ); // 画椭圆 canvas.drawoval(oval, mpaint); rectf rect = new rectf( 100 , 120 , 170 , 200 ); // 画圆角矩形 canvas.drawroundrect(rect, 30 , 20 , mpaint); // 画线 canvas.drawline( 200 , 120 , 300 , 300 , mpaint); |
其他的drawxxx方法这里就不再赘述,大家可以一一去尝试。
这里再来看下canvas中几个比较重要的方法:
1
2
3
4
5
|
canvas.save(); canvas.restore(); canvas.translate(dx, dy); canvas.rotate(degrees); canvas.savelayer(bounds, paint, saveflags); |
save():把当前的绘制的图像保存起来,让后续的操作相当于是在一个新的图层上的操作。
restore():将sava()之前的图层和save之后的图层进行合并操作
translate():画布平移
rotate():画布旋转
大家可能会有疑问,既然我们可以利用坐标系来定位画布中的所有坐标点,为什么还要画布平移和画布旋转的api呢?现在假设有这样一个需求,需要绘制一个仪表盘,而绘制仪表盘的刻度我们可以利用三角函数sin cos 来计算出相应的偏移角度,当然这对于数学学霸来说很easy,一般人而言就需要把三角函数的公式翻个遍了,所以谷歌工程师,为我们实现平移和旋转的api,遇到类似于仪表盘的效果是,只需要旋转当前画布就能实现相应的效果,为我们节省了计算量和工作量。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
paint.setcolor( 0xff00ccff ); paint.setantialias( true ); paint.setstyle(style.stroke); canvas.translate(canvas.getwidth() / 2 , 200 ); // 将位置移动画纸的坐标点,不用每次都从坐标原点计算 canvas.drawcircle( 0 , 0 , 100 , paint); paint tmppaint = new paint(paint); tmppaint.setstrokewidth( 1 ); float y = 100 ; int count = 60 ; // 总刻度数 for ( int i = 0 ; i < count; i++) { if (i % 5 == 0 ) { canvas.drawline(0f, y, 0 , y + 12f, paint); canvas.drawtext(string.valueof(i / 5 + 1 ), -4f, y + 25f, tmppaint); } else { canvas.drawline(0f, y, 0f, y + 5f, tmppaint); } canvas.rotate( 360 / count, 0f, 0f); // 旋转画纸 } // 绘制指针 paint.setstrokewidth( 2 ); canvas.drawline( 0 , 10 , 0 , - 65 , paint); paint.setstrokewidth( 4 ); canvas.drawline( 0 , 10 , 20 , - 35 , paint); |
以上就是android开发中的ui效果设计模块的第二部分内容,之后还会继续更新,希望对大家的学习有所帮助。