I had the same problem and was solved by software disabling hardware acceleration only in the view that will draw Picture
view.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
However, setLayerType is only supported with API 11. Therefore, use this method:
public static void setHardwareAccelerated(View view, boolean enabled){ if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB){ if(enabled) view.setLayerType(View.LAYER_TYPE_HARDWARE, null); else view.setLayerType(View.LAYER_TYPE_SOFTWARE, null); } }
ffleandro Dec 27 '12 at 11:58 2012-12-27 11:58
source share