我希望实现与此类似的动画:
https://dribbble.com/shots/1767235-Rizon-Location-animation
,并在中间的圆圈中显示图像视图。
我知道将使用比例动画,我在我的圆形图像视图上使用它:
<?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" />
这会导致图像跳动,但是如何像上面的动画一样显示和动画图像周围的环?任何提示都会有所帮助。
谢谢 !