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
반응형
'프로그래밍 언어 > Android' 카테고리의 다른 글
Android TextView 텍스트 양쪽 맞춤 하는 방법 (0) | 2021.10.06 |
---|---|
Android-EditText에서 "Enter"처리 (0) | 2021.10.06 |
Android : 이전 활동으로 돌아 가기 (0) | 2021.10.05 |
Android에서 Bitmap을 Drawable로 변환하는 방법 (0) | 2021.10.05 |
Android 활동 수명주기에 대해서 (0) | 2021.10.01 |