I\'ve written a custom View
. Now I want to do a little custom animation when the user touches it.
When I say custom, I mean I basically want to render e
In addition to defining tweened animations in XML you can also define frame-by-frame animations (stored in res/drawable).
Set the animation as the View background via setBackgroundResource.
If you're looking to do something more complicated, take a look at the Canvas class. See the brief intro on how to draw with Canvas.