Android屏幕截图OpenGL + Native GUI

时间:2013-01-16 17:16:03

标签: android opengl-es screenshot

我试图拍摄包含 openGL 元素的活动的屏幕截图(来自与vuforia的统一...所以openGL代码是自动生成的不太容易访问)和自定义原生布局(按钮等)。

目前我使用的方法是:

ViewGroup v1 = (ViewGroup) activity.findViewById(id).getRootView();
v1.setDrawingCacheEnabled(true);
Bitmap source = Bitmap.createBitmap(v1.getDrawingCache());
sCoverBitmap = Bitmap.createBitmap(source, 0, statusBarHeight,
  source.getWidth(), source.getHeight() - statusBarHeight);

在包含openGL和其他布局的根视图中,但openGL(unity)区域是完全黑色的。

0 个答案:

没有答案