Would anyone please try to explain to me why
public void addView(View child) { child.setDrawingCacheEnabled(true); child.setWillNotCacheDrawing(false);
Work best 4me
Bitmap bitmap = Bitmap.createBitmap( screen.getMeasuredWidth(), screen.getMeasuredHeight(), Bitmap.Config.ARGB_8888); Canvas canvas = new Canvas(bitmap); screen.layout(0, 0, screen.getMeasuredWidth(), screen.getMeasuredHeight()); screen.draw(canvas);