我使用这些行来截取我的活动截图:
View toppest = ((ViewGroup) ctx.getWindow().getDecorView().findViewById(android.R.id.content)).getChildAt(0);
toppest.setDrawingCacheEnabled(true);
Bitmap bmap = toppest.getDrawingCache();
Utils.saveBitmapOnSdcard(bmap);
toppest.setDrawingCacheEnabled(false);
无论如何,此屏幕截图不包含操作栏。
如何使用 actionBar 截屏?
有关信息:我将 Sherlock 操作栏实现与 windowActionBarOverlay 选项设置为“true”。