Hi,
I've got a standard RelativeLayout
laying out my Button
s and TextArea
s. What I want to do now is be able to draw various sparks, flying cows etc. at arbitrary places on the screen on top of the whole thing. What's the best way to do this? Should I override onDraw()
on the containing View
and draw after calling super.onDraw()
? Or is there some better way of drawing a layer on top?