Reputation: 1629
How can I implement an animation in Android Studio where a circle "closes" in a specific interval (30 seconds) like that and repeat itself?
Upvotes: 0
Views: 1503
Reputation: 25864
If you want to do it yourself (It's quite fun) then here's what you need:
Create a custom view, in the onDraw(Canva canvas) method, you need to:
The code for all of those things is pretty easy to find on SO.
Good luck!
Upvotes: 2