3

是的,我可以创建带有 2 张图片(开、关)的 ToggleButton 但我想创建一个带有 3-5 张图片的 ToggleButton。

例如,它什么时候关闭,我点击:

  1. 关闭图片
  2. 中间图片
  3. 在图片上

什么时候打开,我点击:

  1. 在图片上
  2. 中间图片
  3. 关闭图片

所以它就像帧动画,我可以在 ImageView 中使用持续时间。

4

1 回答 1

1

编辑:

您可以使用帧动画:在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();
于 2013-09-25T15:25:58.810 回答