Can I draw outside the bounds of an Android Canvas

android, drawing, image-clipping

Solution

try to set

android:clipChildren="false" 

to the parent view

Problem

I'm porting an app written in a graphics environment that allows drawing to happen outside the bounds of the clipping rectangle. Any way to do this in Android?

Original source

Related problems