一、截取缓存图片(当前屏幕显示的部分):
从ImageView对象中获取图像的方法,就是ImageView类中的getDrawingCache()方法,比如下面的代码就是从一个ImageView对象iv_photo中获取图像:
Bitmap obmp = Bitmap.createBitmap(iv_photo.getDrawingCache());
但是需要说明的是:
1. 在调用getDrawingCache()方法从ImageView对象获取图像之前,一定要调用setDrawingCacheEnabled(true)方法:
iv_photo.setDrawingCacheEnabled(true);
否则,无法从ImageView对象iv_photo中获取图像;
2. 在调用getDrawingCache()方法从ImageView对象获取图像之后,一定要调用setDrawingCacheEnabled(false)方法:
iv_photo.setDrawingCacheEnabled(false);
以清空画图缓冲区,否则,下一次从ImageView对象iv_photo中获取的图像,还是原来的图像。
二、截取webView的整个网页:
.graphics.Picture pic = wView.capturePicture();
int width = pic.getWidth(); int height = pic.getHeight();Bitmap bmp = Bitmap.createBitmap(width, 200, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bmp); pic.draw(canvas);
imageView.getBackground(),是获取它的背景图片;
在调用getDrawingCache的时候要注意下面2点:
-
在调用getDrawingCache()方法从ImageView对象获取图像之前,一定要调用setDrawingCacheEnabled(true)方法:
imageview.setDrawingCacheEnabled(true);
否则,无法从ImageView对象iv_photo中获取图像;
-
在调用getDrawingCache()方法从ImageView对象获取图像之后,一定要调用setDrawingCacheEnabled(false)方法:
imageview.setDrawingCacheEnabled(false);
以清空画图缓冲区,否则,下一次从ImageView对象iv_photo中获取的图像,还是原来的图像。
- private Bitmap shot(Activity activity) {
- //View是你需要截图的View
- View view = activity.getWindow().getDecorView();
- view.setDrawingCacheEnabled(true);
- view.buildDrawingCache();
- Bitmap b1 = view.getDrawingCache();
- // 获取状态栏高度 /
- Rect frame = new Rect();
- activity.getWindow().getDecorView().getWindowVisibleDisplayFrame(frame);
- int statusBarHeight = frame.top;
- Log.i("TAG", "" + statusBarHeight);
- // 获取屏幕长和高
- int width = activity.getWindowManager().getDefaultDisplay().getWidth();
- int height = activity.getWindowManager().getDefaultDisplay().getHeight();
- // 去掉标题栏
- Bitmap b = Bitmap.createBitmap(b1, 0, 25, 320, 455);
- Bitmap b = Bitmap.createBitmap(b1, 0, statusBarHeight, width, height - statusBarHeight);
- view.destroyDrawingCache();
- return b;
- }
【Android】获取View的截图
Posted on August 30, 2016 本文总阅读量9次
引言
在Android应用开发过程中,可能会遇到需要对整个界面或者某一部分进行截图的需求。
Android中对View的截图也有以下两种方式,值得注意的是两个方法都不适用于SurfaceView
:
使用DrawingCache
如果使用DrawingCache,则对要截图的View有一个要求:View本身已经显示在界面上。如果View没有添加到界面上或者没有显示(绘制)过,则buildDrawingCache会失败。这种方式比较适合对应用界面或者某一部分的截图。步骤很简单:
view.setDrawingCacheEnabled(true); view.buildDrawingCache(); //启用DrawingCache并创建位图 //创建一个DrawingCache的拷贝,因为DrawingCache得到的位图在禁用后会被回收 Bitmap bitmap = Bitmap.createBitmap(view.getDrawingCache()); view.setDrawingCacheEnabled(false); //禁用DrawingCahce否则会影响性能 |
完整的截图功能函数如下:
/** * 获取一个 View 的缓存视图 * * view * */ private Bitmap getCacheBitmapFromView(View view) { final boolean drawingCacheEnabled = true; view.setDrawingCacheEnabled(drawingCacheEnabled); view.buildDrawingCache(drawingCacheEnabled); final Bitmap drawingCache = view.getDrawingCache(); Bitmap bitmap; if (drawingCache != null) { bitmap = Bitmap.createBitmap(drawingCache); view.setDrawingCacheEnabled(false); } else { bitmap = null; } return bitmap; } |
直接调用View.draw
如果需要截图的View并没有添加到界面上,可能是通过java代码创建的或者inflate创建的,此时调用DrawingCache方法是获取不到位图的。因为View在添加到容器中之前并没有得到实际的大小(如果LayoutWidth是MatchParent,它还没有Parent…),所以首先需要指定View的大小:
private void layoutView(View v, int width, int height) { // validate view.width and view.height v.layout(0, 0, width, height); int measuredWidth = View.MeasureSpec.makeMeasureSpec(width, View.MeasureSpec.EXACTLY); int measuredHeight = View.MeasureSpec.makeMeasureSpec(height, View.MeasureSpec.EXACTLY); // validate view.measurewidth and view.measureheight v.measure(measuredWidth, measuredHeight); v.layout(0, 0, v.getMeasuredWidth(), v.getMeasuredHeight());i } |
使用方式如下:
int viewWidth = webView.getMeasuredWidth(); int viewHeight = webView.getMeasuredHeight(); if (viewWidth > 0 && viewHeight > 0) { b = Bitmap.createBitmap(viewWidth, viewHeight, Config.ARGB_8888); Canvas cvs = new Canvas(b); webView.draw(cvs); } |
对于WebView的截图有一点特殊,网页内容并不能在布局完成后立即渲染出来,大概需要300ms的时间(对于不同性能的设备、网页复杂程度和Webkit版本可能不同)。
如果创建后台的WebView需要截图的话,应该在创建时就对其进行布局操作,这样加载完成后大部分就已经渲染完毕了(除非有异步的js处理)。
【参考资料】:
1、
2、