1. ホーム
  2. android

[解決済み] Androidでプログラム的にスクリーンショットを撮るには?

2022-03-18 16:40:36

質問

プログラムではなく、コードから携帯電話の画面の選択された領域のスクリーンショットを撮るにはどうすればよいですか?

どのように解決するのですか?

以下は、私のスクリーンショットをSDカードに保存し、後で必要なときに使用できるようにしたコードです。

まず、ファイルを保存するための適切なパーミッションを追加する必要があります。

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

そして、これがそのコードです(Activityで実行されます)。

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 DOM
        e.printStackTrace();
    }
}

そして、このように最近生成された画像を開くことができます。

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);
}

フラグメントビューで使用する場合は、次のようにします。

View v1 = getActivity().getWindow().getDecorView().getRootView();

ではなく

View v1 = getWindow().getDecorView().getRootView();

について takeScreenshot() 機能

備考 :

この解決策は、ダイアログにサーフェスビューが含まれている場合には機能しません。詳しくは、次の質問に対する回答をご覧ください。

Android サーフェスビューのスクリーンショットを撮ると黒い画面が表示される