프로그래밍 언어/Android

Android에서 프로그래밍 방식으로 스크린 샷을 찍는 방법

Rateye 2021. 10. 5. 10:38
728x90
반응형
질문 : Android에서 프로그래밍 방식으로 스크린 샷을 찍는 방법은 무엇입니까?

프로그램이 아닌 코드에서 선택한 전화 화면 영역의 스크린 샷을 어떻게 찍을 수 있습니까?

답변

다음은 내 스크린 샷을 SD 카드에 저장하고 나중에 필요에 따라 사용할 수있는 코드입니다.

먼저 파일을 저장할 적절한 권한을 추가해야합니다.

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

그리고 이것은 (활동에서 실행되는) 코드입니다.

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 Take 스크린 샷의 Surface View에 검은 색 화면 표시

출처 : https://stackoverflow.com/questions/2661536/how-to-programmatically-take-a-screenshot-on-android
728x90
반응형