android中实现整个屏幕截图的代码
2018-07-20 来源:open-open
android开发中实现整个屏幕截图,首先通过activity对象的getwindow()方法获得整个屏幕的window对象,再通过整个屏幕的window对象的getDecorView()方法获得整个屏幕的view,最后截图的实现,也就是将view转换成bitmap,然后,将bitmap保存为图片文件。
android中实现整个屏幕截图的代码
public static Bitmap takeScreenShot(Activity act) { if (act == null || act.isFinishing()) { Log.d(TAG, "act参数为空."); return null; } // 获取当前视图的view View scrView = act.getWindow().getDecorView(); scrView.setDrawingCacheEnabled(true); scrView.buildDrawingCache(true); // 获取状态栏高度 Rect statuBarRect = new Rect(); scrView.getWindowVisibleDisplayFrame(statuBarRect); int statusBarHeight = statuBarRect.top; int width = act.getWindowManager().getDefaultDisplay().getWidth(); int height = act.getWindowManager().getDefaultDisplay().getHeight(); Bitmap scrBmp = null; try { // 去掉标题栏的截图 scrBmp = Bitmap.createBitmap( scrView.getDrawingCache(), 0, statusBarHeight, width, height - statusBarHeight); } catch (IllegalArgumentException e) { Log.d("", "#### 旋转屏幕导致去掉状态栏失败"); } scrView.setDrawingCacheEnabled(false); scrView.destroyDrawingCache(); return scrBmp; }
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。
下一篇:PHP模拟多线程请求代码示例
最新资讯
热门推荐