1. 程式人生 > >Android截圖儲存png圖片的例項程式碼(去掉狀態列)

Android截圖儲存png圖片的例項程式碼(去掉狀態列)

今天開發中遇到了android手機截圖的需求,以下是實現程式碼:

這是截圖工具類:

public class ScreenShot {
    // 獲取指定Activity的截圖,儲存到png檔案
    private static Bitmap takeScreenShot(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;
    }
    // 儲存到sdcard
    private static void savePic(Bitmap b, String strFileName) {
        FileOutputStream fos = null;
        try {
            fos = new FileOutputStream(strFileName);
            if (null != fos) {
                b.compress(Bitmap.CompressFormat.PNG, 90, fos);
                fos.flush();
                fos.close();
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    // 程式入口,外界直接呼叫此方法即可
    public static void shoot(Activity a) {
        ScreenShot.savePic(ScreenShot.takeScreenShot(a), "sdcard/xxx.png");
    }
}

當然,若想儲存為除png以外的圖片格式也可以,只需在有png的地方改一下即可。
注意:shoot方法只能在view已經被載入後方可呼叫,或者在   onWindowFocusChanged()方法中呼叫。