经常看到很多应用会在ActionBar上放一个刷新按钮用来刷新页面内容。
当点击这个按钮时,按钮不断旋转,同时访问网络去刷新内容,刷新完成后,动画停止。
主要实现逻辑如下:
//这里使用一个ImageView设置成MenuItem的ActionView,这样我们就可以使用这个ImageView显示旋转动画了 ImageView refreshActionView = new ImageView(this); refreshActionView.setImageResource(drawable.ic_action_refresh); refreshItem.setActionView(refreshActionView); //显示刷新动画 Animation animation = AnimationUtils.loadAnimation(this, anim.refresh); animation.setRepeatMode(Animation.RESTART); //设置动画从头开始 animation.setRepeatCount(Animation.INFINITE); refreshActionView.startAnimation(animation);
事实证明,按照上面的写法,动画只会执行一次就停止。后来在网上查资料,
必须将setRepeatMode和setRepeatCount这两个方法写在xml中,不能通过代码来直接设置。如下:
<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <rotate android:interpolator="@android:anim/linear_interpolator" android:duration="2000" android:fromDegrees="0" android:toDegrees="360" android:pivotX="50%" android:pivotY="50%" android:repeatMode="restart" android:repeatCount="infinite" /> </set>
按照上面的写法,动画能够循环执行,但是每次动画之间会有短暂的停顿,体验很不好。
这个设置一下intepolator就行,这个是用来修饰动画效果,定义动画的变化率,
可以使存在的动画效果accelerated(加速),decelerated(减速),repeated(重复),bounced(弹跳)等。
但是我上面已经设置了,为什么仍然不起作用?原来,需要将这个属性放在set里才行,即:
<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/linear_interpolator"> <rotate android:duration="2000" android:fromDegrees="0" android:toDegrees="360" android:pivotX="50%" android:pivotY="50%" android:repeatMode="restart" android:repeatCount="infinite" /> </set>
这样就没问题了。
时间: 2024-12-15 20:00:17