扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
这篇文章给大家介绍Android应用中实现截取手机屏幕的方法有哪些,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
网站建设哪家好,找成都创新互联公司!专注于网页设计、网站建设、微信开发、重庆小程序开发、集团企业网站建设等服务项目。为回馈新老客户创新互联还提供了平谷免费建站欢迎大家使用!
方法1:首先想到的思路是利用SDK提供的View.getDrawingCache()方法:
public void printScreen(View view) { String imgPath = "/sdcard/test.png"; view.setDrawingCacheEnabled(true); view.buildDrawingCache(); Bitmap bitmap = view.getDrawingCache(); if (bitmap != null) { try { FileOutputStream out = new FileOutputStream(imgPath); bitmap.compress(Bitmap.CompressFormat.PNG, 100, out); } catch (Exception e) { e.printStackTrace(); } } }
这个方法在很多情况下都是没有问题的,比如说截取imageview,TextView,甚至otherview.getRootView();都没问题,但在WebView上就会出现webview的部分截取完缺少页面里的一些内容的情况,比如说用webview打开这个(https://miqt.github.io/jellyfish/)界面,截取的图片就会有问题,具体表现为网页中游动的水母没有显示在截取的图片上。
方法2:使用Android系统提供的服务Context.MEDIA_PROJECTION_SERVICE,进行截图操作。
github地址:https://github.com/miqt/CapWindow
demo源码下载地址:CapWindow_jb51.rar
关键部分代码解析:↓
发送截图请求
final MediaProjectionManager projectionManager = (MediaProjectionManager) getSystemService(Context.MEDIA_PROJECTION_SERVICE); Intent intent = projectionManager.createScreenCaptureIntent(); startActivityForResult(intent, REQUEST_CODE);
接收返回的结果:
@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); handleScreenShotIntent(resultCode, data); } private void handleScreenShotIntent(int resultCode, Intent data) { onScreenshotTaskBegan(); final MediaProjectionManager projectionManager = (MediaProjectionManager) getSystemService(Context.MEDIA_PROJECTION_SERVICE); final MediaProjection mProjection = projectionManager.getMediaProjection(resultCode, data); Point size = Utils.getScreenSize(this); final int mWidth = size.x; final int mHeight = size.y; final ImageReader mImageReader = ImageReader.newInstance(mWidth, mHeight, PixelFormat .RGBA_8888, 2); final VirtualDisplay display = mProjection.createVirtualDisplay("screen-mirror", mWidth, mHeight, DisplayMetrics.DENSITY_MEDIUM, DisplayManager.VIRTUAL_DISPLAY_FLAG_PRESENTATION, mImageReader.getSurface(), null, null); mImageReader.setOnImageAvailableListener(new ImageReader.OnImageAvailableListener() { @Override public void onImageAvailable(ImageReader mImageReader) { Image image = null; try { image = mImageReader.acquireLatestImage(); if (image != null) { final Image.Plane[] planes = image.getPlanes(); if (planes.length > 0) { final ByteBuffer buffer = planes[0].getBuffer(); int pixelStride = planes[0].getPixelStride(); int rowStride = planes[0].getRowStride(); int rowPadding = rowStride - pixelStride * mWidth; // create bitmap Bitmap bmp = Bitmap.createBitmap(mWidth + rowPadding / pixelStride, mHeight, Bitmap.Config.ARGB_8888); bmp.copyPixelsFromBuffer(buffer); Bitmap croppedBitmap = Bitmap.createBitmap(bmp, 0, 0, mWidth, mHeight); saveBitmap(croppedBitmap);//保存图片 if (croppedBitmap != null) { croppedBitmap.recycle(); } if (bmp != null) { bmp.recycle(); } } } } catch (Exception e) { e.printStackTrace(); } finally { if (image != null) { image.close(); } if (mImageReader != null) { mImageReader.close(); } if (display != null) { display.release(); } mImageReader.setOnImageAvailableListener(null, null); mProjection.stop(); onScreenshotTaskOver(); } } }, getBackgroundHandler()); }
这个方法类似使用手机的系统截屏(音量下键+电源键),能够完美的吧当前原模原样的屏幕截取下来,并且修改保存方法的话甚至可以屏幕录像,但相比于第一种方法,它的缺点是完全和界面上的view没有关系,并且在调用这个服务的时候,会弹出一个权限确认的弹框。另外需要注意,这一方法只能在Android 5.0的系统设备上适用。
关于Android应用中实现截取手机屏幕的方法有哪些就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流