摘要: 1.将view转为bitmap123456789101112131415161718192021// 将view转为bitmappublicstaticBitmap getBitmapFromView(View view){// Define a bitmap with the same size as the viewBitmap returnedBitmap = Bitmap.createBitmap(view.getWidth(), view.getHeight(), Bitmap.Config.ARGB_8888);// Bind a canvas to itCanvas canvas 阅读全文
posted @ 2013-11-01 11:54 飞默 阅读(955) 评论(1) 推荐(1) 编辑