我正在使用此library进行雷达扫描视图。这是我用来实现雷达视图的class。
现在我想在我的Activity中弹出一个ImageView
。
这是我使用的代码。
animation.XML
<?xml version="1.0" encoding="UTF-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<alpha
android:fromAlpha="0.0"
android:toAlpha="1.0"
android:interpolator="@android:anim/accelerate_interpolator"
android:duration="1000"/>
</set>
这就是我设置动画的方式
Animation expandIn = AnimationUtils.loadAnimation(this, R.animator.animation);
expandIn.setRepeatCount(0);
expandIn.setRepeatMode(Animation.REVERSE);
img1.startAnimation(expandIn);
现在的问题是我每4秒调用一次动画代码。每当调用动画代码时,雷达的旋转变慢,当ImageView再次消失时,旋转恢复正常。
任何人都可以帮我解决这个错误。