为什么使用此代码的屏幕截图是黑色的?
ViewGroup vg = (ViewGroup)findViewById(R.id.todayfragment);
Bitmap screenshot = Bitmap.createBitmap(vg.getWidth(), vg.getHeight(), Bitmap.Config.RGB_565);
vg.draw(new Canvas(screenshot));
String path = Images.Media.insertImage(getContentResolver(), screenshot, "Photo to share", null);
答案 0 :(得分:0)
因为你从未在位图中画过任何东西。所以颜色#000
是黑色的。