I want to draw a Picture
on a Canvas
by
mCanvas.drawpicture(mPicture, mRect)
Using target API 7 <uses-sdk android:minSdkVersion="7"/>
, it works perfectly in devices with API<14, but in devices with Ice Cream Sandwich, it doesn't work. Apparently this is because canvas.drawPicture is not supported with Hardware Acceleration: Unsupported Drawing Operations
I have tried to fix this by disabling the Hardware Acceleration in the Manifest:
<application android:hardwareAccelerated="false" ...>
but still does't work.
<uses-sdk android:minSdkVersion="7"/>
– Shih