Android5.0以上截圖方法灭翔,適配targetSdkVersion 29以上

適配了Android5.0以上的截圖方法紊遵,實現(xiàn)了后臺連續(xù)截圖沐悦;使用該方法請求授權(quán)同意后開始截圖:

private MediaProjectionManager mMediaProjectionManager;
  public void getMediaProjectionManger() {
        mMediaProjectionManager = (MediaProjectionManager) getSystemService(Context.MEDIA_PROJECTION_SERVICE);
        if (mMediaProjectionManager != null) {
            startActivityForResult(mMediaProjectionManager.createScreenCaptureIntent(), RECORD_REQUEST_CODE);
        }
    }

由于targetSdkVersion 29及以上要求getMediaProjection需要再前臺服務(wù)執(zhí)行,所以在onActivityResult里面啟動服務(wù):

 @Override
    protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if (requestCode == RECORD_REQUEST_CODE && resultCode == RESULT_OK) {
            Intent intent = new Intent(ZkScreenshotActivity.this, ZkA5AboveScreenshotService.class);
            intent.putExtra("code",resultCode);
            intent.putExtra("data",data);
            ZkUtlis.startService(ZkScreenshotActivity.this,intent);
        }
    }

Service方法如下:

 public class ZkA5AboveScreenshotService extends Service {

    private String mTag = "ZkA5AboveScreenshotService";

    private int mResultCode;

    private Intent mResultData;

    private MediaProjection mMediaProjection;

    private MediaProjectionManager mMediaProjectionManager;

    private int mWidth;

    private int mHeight;

    private int mDensity;

    private ImageReader mImageReader;

    private int mImagesProduced;

    private int mCount = 0;

    @Override
    public void onCreate() {
        super.onCreate();
        mMediaProjectionManager = (MediaProjectionManager) getSystemService(Context.MEDIA_PROJECTION_SERVICE);
    }

    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        createNotificationChannel();
        mResultCode = intent.getIntExtra("code", -1);
        mResultData = intent.getParcelableExtra("data");
        mMediaProjection = mMediaProjectionManager.getMediaProjection(mResultCode, Objects.requireNonNull(mResultData));
        Log.d(mTag, "mMediaProjection created: " + mMediaProjection);
        startCaptureReader();
        return super.onStartCommand(intent, flags, startId);
    }

    /**
     * startCaptureReader
     */
    @SuppressLint("WrongConstant")
    private void startCaptureReader() {
        WindowManager wm = (WindowManager) getBaseContext().getSystemService(Context.WINDOW_SERVICE);
        Display display = wm.getDefaultDisplay();
        Point size = new Point();
        display.getSize(size);
        mWidth = size.x;
        mHeight = size.y;
        Log.d(mTag,"width:" + mWidth + "   height:" + mHeight);
        DisplayMetrics metrics = getResources().getDisplayMetrics();
        mDensity = metrics.densityDpi;
        // start capture reader
        mImageReader = ImageReader.newInstance(mWidth, mHeight, 0x01, 2);
        mMediaProjection.createVirtualDisplay("screencap", mWidth, mHeight, mDensity, DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR, mImageReader.getSurface(), null, null);
        mImageReader.setOnImageAvailableListener(new ImageAvailableListener(), null);
    }

    /**
     * ImageAvailableListener
     */
    private class ImageAvailableListener implements ImageReader.OnImageAvailableListener {
        @Override
        public void onImageAvailable(ImageReader reader) {
            try (Image image = reader.acquireLatestImage()) {
                if (image != null) {
                      /**
                       * 截圖結(jié)果崔兴,會在內(nèi)容更新自動回調(diào)彰导,該方法可以實現(xiàn)連續(xù)截圖蛔翅,無需重復(fù)啟用截圖方法
                       */

                    }
                    image.close();
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

    /**
     * Create Notification Channel
     */
    private void createNotificationChannel() {
        //獲取一個Notification構(gòu)造器
        Notification.Builder builder = new Notification.Builder(this.getApplicationContext());
        //點擊后跳轉(zhuǎn)的界面,可以設(shè)置跳轉(zhuǎn)數(shù)據(jù)
        Intent nfIntent = new Intent(this, ZkScreenshotActivity.class);
        // 設(shè)置PendingIntent
        builder.setContentIntent(PendingIntent.getActivity(this, 0, nfIntent, 0))
                // 設(shè)置下拉列表中的圖標(biāo)(大圖標(biāo))
                .setLargeIcon(BitmapFactory.decodeResource(this.getResources(), R.mipmap.ic_launcher))
                // 設(shè)置下拉列表里的標(biāo)題
                //.setContentTitle("SMI InstantView")
                // 設(shè)置狀態(tài)欄內(nèi)的小圖標(biāo)
                .setSmallIcon(R.mipmap.ic_launcher)
                // 設(shè)置上下文內(nèi)容
                .setContentText("is running......")
                // 設(shè)置該通知發(fā)生的時間
                .setWhen(System.currentTimeMillis());

        /*以下是對Android 8.0的適配*/
        //普通notification適配
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            builder.setChannelId("notification_id");
        }
        //前臺服務(wù)notification適配
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            NotificationManager notificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
            NotificationChannel channel = new NotificationChannel("notification_id", "notification_name", NotificationManager.IMPORTANCE_LOW);
            notificationManager.createNotificationChannel(channel);
        }
        // 獲取構(gòu)建好的Notification
        Notification notification = builder.build();
        //設(shè)置為默認(rèn)的聲音
        notification.defaults = Notification.DEFAULT_SOUND;
        startForeground(110, notification);
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        Log.d(mTag, "Service onDestroy");
        if (mImageReader != null) {
            mImageReader.setOnImageAvailableListener(null,null);
            mImageReader.close();
            mImageReader = null;
        }
        if (mMediaProjection != null) {
            mMediaProjection.stop();
            mMediaProjection = null;
        }
        mMediaProjectionManager = null;
    }

下面是將Image轉(zhuǎn)Bitmap

 /**
     * Image 轉(zhuǎn) Bitmap
     * @param image
     */
    private Bitmap imageToBitmap(Image image) {
        Image.Plane[] planes = image.getPlanes();
        ByteBuffer buffer = planes[0].getBuffer();
        int pixelStride = planes[0].getPixelStride();
        int rowStride = planes[0].getRowStride();
        int rowPadding = rowStride - pixelStride * mWidth;

        Bitmap bitmap = Bitmap.createBitmap(mWidth + rowPadding / pixelStride, mHeight, Bitmap.Config.ARGB_8888);
        bitmap.copyPixelsFromBuffer(buffer);
        return bitmap; 
    }
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末位谋,一起剝皮案震驚了整個濱河市山析,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌掏父,老刑警劉巖笋轨,帶你破解...
    沈念sama閱讀 211,561評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異赊淑,居然都是意外死亡翩腐,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,218評論 3 385
  • 文/潘曉璐 我一進(jìn)店門膏燃,熙熙樓的掌柜王于貴愁眉苦臉地迎上來茂卦,“玉大人,你說我怎么就攤上這事组哩〉攘” “怎么了?”我有些...
    開封第一講書人閱讀 157,162評論 0 348
  • 文/不壞的土叔 我叫張陵伶贰,是天一觀的道長蛛砰。 經(jīng)常有香客問我,道長黍衙,這世上最難降的妖魔是什么泥畅? 我笑而不...
    開封第一講書人閱讀 56,470評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮琅翻,結(jié)果婚禮上位仁,老公的妹妹穿的比我還像新娘。我一直安慰自己方椎,他們只是感情好聂抢,可當(dāng)我...
    茶點故事閱讀 65,550評論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著棠众,像睡著了一般琳疏。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上闸拿,一...
    開封第一講書人閱讀 49,806評論 1 290
  • 那天空盼,我揣著相機(jī)與錄音,去河邊找鬼新荤。 笑死揽趾,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的迟隅。 我是一名探鬼主播但骨,決...
    沈念sama閱讀 38,951評論 3 407
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼智袭!你這毒婦竟也來了奔缠?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,712評論 0 266
  • 序言:老撾萬榮一對情侶失蹤吼野,失蹤者是張志新(化名)和其女友劉穎校哎,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體瞳步,經(jīng)...
    沈念sama閱讀 44,166評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡闷哆,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,510評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了单起。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片抱怔。...
    茶點故事閱讀 38,643評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖嘀倒,靈堂內(nèi)的尸體忽然破棺而出屈留,到底是詐尸還是另有隱情,我是刑警寧澤测蘑,帶...
    沈念sama閱讀 34,306評論 4 330
  • 正文 年R本政府宣布灌危,位于F島的核電站,受9級特大地震影響碳胳,放射性物質(zhì)發(fā)生泄漏勇蝙。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,930評論 3 313
  • 文/蒙蒙 一挨约、第九天 我趴在偏房一處隱蔽的房頂上張望味混。 院中可真熱鬧,春花似錦诫惭、人聲如沸惜傲。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,745評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽盗誊。三九已至,卻和暖如春隘弊,著一層夾襖步出監(jiān)牢的瞬間哈踱,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,983評論 1 266
  • 我被黑心中介騙來泰國打工梨熙, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留开镣,地道東北人。 一個月前我還...
    沈念sama閱讀 46,351評論 2 360
  • 正文 我出身青樓咽扇,卻偏偏與公主長得像邪财,于是被迫代替她去往敵國和親陕壹。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,509評論 2 348

推薦閱讀更多精彩內(nèi)容