I want to make an animation have some circles. They will draw from small to big look like water ripple effect.
How to make it with Android code?
Please help me!!!
I want to make an animation have some circles. They will draw from small to big look like water ripple effect.
How to make it with Android code?
Please help me!!!
Start by learning about drawing Circles on Canvas:
http://www.compiletimeerror.com/2013/09/introduction-to-2d-drawing-in-android.html#.VQAjCVXd_NE
Once you have the hang of that just increase the size of the circle incrementally with each frame being drawn (and, optionally, fade the color or alpha value of the circle as it approaches the large end of the size range)
NOTE: You'll probably want to change the line that says:
paint.setStyle(Paint.Style.FILL);
...to say:
paint.setStyle(Paint.Style.STROKE);