I am looking to achieve an animation similar to this :
https://dribbble.com/shots/1767235-Rizon-Location-animation
,and with an image view in the circle in the middle.
I understand that a scale animation would be used and I am using this on my circle image view :
<?xml version="1.0" encoding="utf-8"?>
<scale xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="1000"
android:fromXScale="1"
android:fromYScale="1"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="infinite"
android:repeatMode="reverse"
android:toXScale="0.5"
android:toYScale="0.5" />
This causes the image to pulsate, but how do I show and animate the rings around the image like the animation above ? Any hints would be helpful.
Thanks !