Canvas,Paint
1.在android 绘图但中经常要用到Canvas和Paint类,Canvas好比是一张画布,上面已经有你想绘制图画的轮廓了,而Paint就好比是画笔,就要给Canvas进行添色等操作。
这两个类通常都是在onDraw(Canvas canvas)方法中用的。
2.Bitmap:代表一张位图,BitmapDrawable里封装的突变就是一个Bitmao对象
3.Canvas里面有一些例如:
drawArc(参数) 绘制弧
drawBitmao(Bitmap bitmap ,Rect rect,Rect dst,Paint paint) 在指定点绘制从源图中"挖取"的一块
clipRect(float left,float top,float right,float bottom) 剪切一个矩形区域
clipRegion(Region region) 剪切一个指定区域。
Canvas除了直接绘制一个基本图形外,还提供了如下方法进行坐标变化:
rotate(float degree,float px, float py):对Canvas执行旋转变化
scale(float sx,float sy,float px,float py):对Cnavas进行缩放变换
skew(float sx,float sy):对Canvas执行倾斜变换
translate(float dx,float dy):对Cnavas执行移动
4.Paint类主要用于设置绘制风格包括画笔颜色,画笔粗细,填充风格等,
Paint提供了一些方法
setARGB(int a,int r,int g,int b)/setColor(int color) :设置颜色
等一些方法
5.下面通过一个例子来说明一下这两个类:
public class MyView extends View { public MyView(Context context) {
super(context);
// TODO Auto-generated constructor stub
} public MyView(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
} public MyView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
// TODO Auto-generated constructor stub
} // 重写该方法,进行绘图
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
// 整张画布绘制成白色
canvas.drawColor(Color.WHITE);
Paint paint = new Paint();
// 去锯齿
paint.setAntiAlias(true);
paint.setColor(Color.BLUE);
paint.setStyle(Style.STROKE);
paint.setStrokeWidth(3);
// 绘制图形
canvas.drawCircle(40, 40, 30, paint);
// 绘制正方型
canvas.drawRect(10, 80, 70, 140, paint);
// 绘制矩形
canvas.drawRect(10, 150, 70, 190, paint);
RectF rel = new RectF(10, 200, 70, 230);
// 绘制圆角矩形
canvas.drawRoundRect(rel, 15, 15, paint);
RectF rell = new RectF(10, 240, 70, 270);
// 绘制椭圆
canvas.drawOval(rell, paint);
// 定义一个Path对象,封闭成一个三角形
Path path1 = new Path();
path1.moveTo(10, 340);
path1.lineTo(70, 340);
path1.lineTo(40, 290);
path1.close(); } }