Android Canvas 两种使用方式

From:http://blog.csdn.net/androiddevelop/article/details/8267312

一、Canvas第一种使用方式


最简单的使用Canvas, 画一个方形,一行字。 下面是效果图


Android Canvas 两种使用方式_第1张图片


[java] view plain copy print ?
  1. public class CustomView extends View {  
  2.   
  3.     private Paint mPaint;  
  4.       
  5.     public CustomView(Context context) {  
  6.     super(context);  
  7.     }  
  8.       
  9.     public CustomView(Context context, AttributeSet attrs) {  
  10.     super(context, attrs);  
  11.       
  12.         mPaint = new Paint();    
  13.         mPaint.setColor(Color.GREEN);    
  14.         mPaint.setTextSize(36);    
  15.             
  16.     }  
  17.   
  18.     @Override  
  19.     protected void onDraw(Canvas canvas) {  
  20.     super.onDraw(canvas);  
  21.   
  22.         mPaint.setStyle(Style.FILL); //设置填充     
  23.         canvas.drawRect(1010200200, mPaint); //绘制矩形     
  24.             
  25.         mPaint.setColor(Color.BLUE);    
  26.         canvas.drawText("我不是自定义View"10120, mPaint);    
  27.     }  



参考资料:

android图形系统详解一:Canvas

android Canvas类介绍

Android Graphic : apk and Skia/OpenGL|ES


二、Canvas第二种使用方式

Canvas的使用通常只有两种形式:

1.  在已有的Canvas上绘制图形或文字,通过VIew.onDraw回调获取Canvas对象。Canvas第一种使用方式

2.  图形或文字直接绘制到View上(本文使用此种方式)


[java] view plain copy print ?
  1. public class MainActivity extends Activity {  
  2.   
  3.     @Override  
  4.     protected void onCreate(Bundle savedInstanceState) {  
  5.         super.onCreate(savedInstanceState);  
  6.         setContentView(R.layout.activity_main);  
  7.           
  8.         Bitmap b =Bitmap.createBitmap(100100, Bitmap.Config.ARGB_8888);  
  9.         Canvas canvas =new Canvas(b);  
  10.           
  11.         Paint paint = new Paint();  
  12.         paint.setColor(Color.BLUE);  
  13.         canvas.drawText("love_world_"2020, paint);  
  14.           
  15.         ImageView imageView = (ImageView) findViewById(R.id.image_view);  
  16.         BitmapDrawable bitmapDrawable = new BitmapDrawable(b);  
  17.         imageView.setBackgroundDrawable(bitmapDrawable);  
  18.     }  
  19.   
  20. }  



效果图

Android Canvas 两种使用方式_第2张图片




Android入门第十四篇之画图

http://blog.csdn.net/hellogv/article/category/761980

Andriod中绘(画)图----Canvas的使用详解

http://blog.csdn.net/qinjuning/article/details/6936783

Android图像处理之Bitmap类
http://blog.csdn.net/thl789/article/details/6762030

Android利用canvas画各种图形(点、直线、弧、圆、椭圆、文字、矩形、多边形、曲线、圆角矩形)

http://blog.csdn.net/rhljiayou/article/details/7212620

画了个Android——Canvas类的使用

http://blog.sina.com.cn/s/blog_61ef49250100qw9x.html

Android Canvas rotate

http://verydemo.com/demo_c131_i3507.html





Android入门第十四篇之画图

http://blog.csdn.net/hellogv/article/category/761980


Andriod中绘(画)图----Canvas的使用详解

http://blog.csdn.net/qinjuning/article/details/6936783




Android图像处理之Bitmap类
http://blog.csdn.net/thl789/article/details/6762030


Android利用canvas画各种图形(点、直线、弧、圆、椭圆、文字、矩形、多边形、曲线、圆角矩形)

http://blog.csdn.net/rhljiayou/article/details/7212620


画了个Android——Canvas类的使用

http://blog.sina.com.cn/s/blog_61ef49250100qw9x.html


Android Canvas rotate

http://verydemo.com/demo_c131_i3507.html

你可能感兴趣的:(android,Android开发)