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

标签 android screenshot

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

最佳答案

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

相关文章:

Android ListView 选择器不能正常工作

c# - 捕获屏幕区域

java - 将一系列图像转换为 Java 中的视频?

android - Firebase 多播云消息传递

java - 可扩展 ListView subview 问题

android - 有什么方法可以自定义消息 "This app won' t 运行,除非您更新 Google Play 服务”或根据用户选择跳过消息

android - 无法使用原生代码在 V2 Flutter 中截屏,它在 V1 Flutter 中运行良好

ios - 制作所有 UIScrollView 内容的快照

root 设备上的 Android 屏幕截图

android - 写xml有困难