是的,我可以创建带有 2 张图片(开、关)的 ToggleButton 但我想创建一个带有 3-5 张图片的 ToggleButton。
例如,它什么时候关闭,我点击:
- 关闭图片
- 中间图片
- 在图片上
什么时候打开,我点击:
- 在图片上
- 中间图片
- 关闭图片
所以它就像帧动画,我可以在 ImageView 中使用持续时间。
是的,我可以创建带有 2 张图片(开、关)的 ToggleButton 但我想创建一个带有 3-5 张图片的 ToggleButton。
例如,它什么时候关闭,我点击:
什么时候打开,我点击:
所以它就像帧动画,我可以在 ImageView 中使用持续时间。
编辑:
您可以使用帧动画:在res/drawable/myanim.xml
:
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/pic_one" android:duration="50"/>
<item android:drawable="@drawable/pic_two" android:duration="50" />
<item android:drawable="@drawable/pic_three" android:duration="50" />
</animation-list>
然后,您可以将此动画用作普通的可绘制对象:
<ImageView android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/myanim"/>
开始你做的动画
AnimationDrawable backgroundDrawable = (AnimationDrawable) image.getDrawable();
backgroundDrawable.start();
您还可以使用Value Animator。我还没有对此进行测试,但是您应该可以将这样的内容放入按钮的 onClick 处理程序中:
int[] backgrounds = ...;//ids of the backgrounds for the button
ValueAnimator anim = ValueAnimator.ofInt(0, backgrounds.length);
anim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
int i = (Integer) animation.getAnimatedValue();
int backgroundId = backgrounds[i];
yourButton.setBackgroundResource(backgroundId);
}
});
anim.setDuration(500); //0.5 seconds
anim.start();