亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android應用中實現截取手機屏幕的方法有哪些

發布時間:2020-12-03 16:30:35 來源:億速云 閱讀:180 作者:Leah 欄目:移動開發

這篇文章給大家介紹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應用中實現截取手機屏幕的方法有哪些就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泾川县| 阳曲县| 益阳市| 阿尔山市| 略阳县| 屯门区| 临城县| 连城县| 进贤县| 依安县| 朔州市| 平乡县| 简阳市| 尚志市| 迁西县| 浏阳市| 张北县| 宜丰县| 武川县| 安远县| 司法| 兖州市| 龙岩市| 鄂州市| 沙雅县| 云霄县| 雷州市| 澄江县| 九龙坡区| 凤阳县| 禄丰县| 灵山县| 自治县| 藁城市| 和田市| 马龙县| 宜州市| 鸡东县| 洮南市| 西乌珠穆沁旗| 延长县|