标签: android
我正在使用此代码获取活动的屏幕截图:
View rootView = getWindow().getDecorView().getRootView(); rootView.setDrawingCacheEnabled(true); rootView.buildDrawingCache(true); Bitmap bitmap = rootView.getDrawingCache();
但是,如果未显示菜单或子菜单 - 那么即使它们变得可见,它们也不会在位图上绘制。