Android下免Root權限截屏

n7w77 9年前發布 | 1K 次閱讀 Java Android

       /**

 * 返回的 bitmap就是屏幕的內容
 */
private static Bitmap takeScreenShot(Activity activity) {
    View view = activity.getWindow().getDecorView();

// Enables or disables the drawing cache view.setDrawingCacheEnabled(true); // will draw the view in a bitmap view.buildDrawingCache(); Bitmap bitmap = view.getDrawingCache(); Rect frame = new Rect(); activity.getWindow().getDecorView().getWindowVisibleDisplayFrame(frame); int statusBarHeight = frame.top; int width = activity.getWindowManager().getDefaultDisplay().getWidth(); int height = activity.getWindowManager().getDefaultDisplay().getHeight(); // 去掉標題欄 Bitmap b = Bitmap.createBitmap(bitmap, 0, statusBarHeight, width, height - statusBarHeight); view.destroyDrawingCache(); return b; }</pre>

 本文由用戶 n7w77 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!