gpt4 book ai didi

android - 如何以编程方式在 Android 上截屏?

转载 作者:IT老高 更新时间:2023-10-28 12:48:54 25 4
gpt4 key购买 nike

如何不通过任何程序而是通过代码截取手机屏幕的选定区域?

最佳答案

这是允许我的屏幕截图存储在 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);
}

如果您想在 fragment View 上使用它,请使用:

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

而不是

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

关于takeScreenshot()函数

注意:

如果您的对话框包含表面 View ,则此解决方案不起作用。详情请查看以下问题的答案:

Android Take Screenshot of Surface View Shows Black Screen

关于android - 如何以编程方式在 Android 上截屏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2661536/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com