How do I take screenshots on Android?

Asked 2 years ago, Updated 2 years ago, 22 views

I want to take a screenshot of the selected range of the device without using the program, is it possible?

android screenshot

2022-09-22 12:19

1 Answers

Take a screenshot of the code below and save it to the sd card of the device.

At first, I went to the manifest file I'll do ****. And in the returning activity class,

private void takeScreenshot() {
    Date now = new Date();
    android.text.format.DateFormat.format("yyyy-MM-dd_hh:mm:ss", now);

    try {
        // // image naming and path  to include sd card  appending name you choose for file
        String mPath = Environment.getExternalStorageDirectory().toString() + "/" + now + ".jpg";

        // // create bitmap screen capture
        View v1 = getWindow().getDecorView().getRootView();
        v1.setDrawingCacheEnabled(true);
        Bitmap bitmap = Bitmap.createBitmap(v1.getDrawingCache());
        v1.setDrawingCacheEnabled(false);

        File imageFile = new File(mPath);

        FileOutputStream outputStream = new FileOutputStream(imageFile);
        int quality = 100;
        bitmap.compress(Bitmap.CompressFormat.JPEG, quality, outputStream);
        outputStream.flush();
        outputStream.close();

        openScreenshot(imageFile);
    } } catch (Throwable e) {
        // // Several error may come out with file handling or OOM
        e.printStackTrace();
    }
}

If you want to open the captured picture after making this method

private void openScreenshot(File imageFile) {
    Intent intent = new Intent();
    intent.setAction(Intent.ACTION_VIEW);
    Uri uri = Uri.fromFile(imageFile);
    intent.setDataAndType(uri, "image/*");
    startActivity(intent);
}

You can add a method like this.


2022-09-22 12:19

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.