android中实现整个屏幕截图的代码

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

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;  
}