【发布时间】:2015-11-12 12:24:03
【问题描述】:
我希望实现类似于此的动画:
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" />
这会导致图像跳动,但是如何像上面的动画一样显示图像周围的环并为其设置动画?任何提示都会有所帮助。
谢谢!
【问题讨论】:
标签: android animation scaleanimation