2

可能重复:
屏幕截图 Android

我想以编程方式捕获屏幕截图(不是我的视图的屏幕截图),并创建了一个应用程序来截取我的视图的屏幕截图。

我正在尝试使用 Java 代码捕获设备屏幕截图(例如,如果用户打开任何图像文件)(我想创建服务并从服务中我们可以拍照,但我不知道如何实现这一点)。

我发现了一些使用帧缓冲区 fb0 的本机代码,但我对此非常了解,不知道如何使用它。

4

1 回答 1

9

这是截取屏幕截图并将其写入sd卡的解决方案

设置你的根布局:

View content = findViewById(R.id.layoutroot);
content.setDrawingCacheEnabled(true);

获取渲染视图的函数:

private void getScreen()
{
    View content = findViewById(R.id.layoutroot);
    Bitmap bitmap = content.getDrawingCache();
    File file = new File( Environment.getExternalStorageDirectory() + "/test.png");
    try 
    {
        file.createNewFile();
        FileOutputStream ostream = new FileOutputStream(file);
        bitmap.compress(CompressFormat.PNG, 100, ostream);
        ostream.close();
    } 
    catch (Exception e) 
    {
        e.printStackTrace();
    }
}

记得添加

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

到您的 AndroidManifest。

于 2012-07-11T10:21:16.433 回答