2

我的应用程序有问题:我想在重复动画但未onAnimationRepeat调用函数(来自AnimationListener类)时修改 ImageView。

这是重现它的示例:

  • 创建一个新项目“test”(Android 2.1,API 7)(我用于com.test.test包名)
  • anim在文件夹内创建一个文件res夹并fade_in.xml使用这些行创建

淡入淡出.xml

活动代码:

package com.test.test;

import android.app.Activity;
import android.graphics.Color;
import android.graphics.PorterDuff.Mode;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.view.animation.Animation.AnimationListener;
import android.widget.Button;
import android.widget.ImageView;

public class TestActivity extends Activity {

    Button button = null;
    ImageView image = null;

    Animation animation = null;


    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        button = (Button)findViewById(R.id.button1);
        image = (ImageView)findViewById(R.id.imageView1);

        animation = AnimationUtils.loadAnimation(this, R.anim.fade_in);
        animation.setAnimationListener(new AnimationListener() {            

            int repeatNumber = 0;

            @Override
            public void onAnimationStart(Animation animation) {Log.i("start", "start");}

            @Override
            public void onAnimationEnd(Animation animation) {Log.i("end", "end");}

            @Override
            public void onAnimationRepeat(Animation animation) {
                repeatNumber++;
                Log.i("repeat", String.valueOf(repeatNumber));
                switch(repeatNumber)
                {
                case 1:image.setColorFilter(Color.RED, Mode.MULTIPLY);break;
                case 2:image.setColorFilter(Color.BLUE, Mode.MULTIPLY);break;
                case 3:image.setColorFilter(Color.YELLOW, Mode.MULTIPLY);break;
                default:break;
                }
            }
        });

        button.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {image.startAnimation(animation);}
        });

    }
}

和布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher" />

</LinearLayout>

ImageView颜色没有变化……你能帮帮我吗?

4

3 回答 3

3

该方法AnimationUtils.loadAnimation()返回一个动画数组。

您必须在此数组的项目上设置事件。

你可以声明一个 AnimationSet

AnimationSet animation = null;

所以在指令之后

animation = AnimationUtils.loadAnimation(this, R.anim.fade_in);

你可以写 :

    for (Animation a : animation.getAnimations())
        a.setAnimationListener(new AnimationListener() {

            @Override
            public void onAnimationStart(Animation animation) {}

            @Override
            public void onAnimationRepeat(Animation animation) {
                Log.i("repeat", "repeat");
            }

            @Override
            public void onAnimationEnd(Animation animation) {}
        });

这将起作用。

于 2012-12-10T20:38:58.283 回答
0

对于重复动画,您需要设置动画的重复模式和重复出现的次数。

anim.setRepeatMode(Animation.INFINITE);
anim.setRepeatCount(5);
于 2012-12-08T11:50:10.307 回答
0

我遇到了同样的问题并阅读了很多资源和动画问题答案。每个人都在抱怨 AnimationSet 和重复计数问题。所以我从 XML 中删除了标签,它起作用了。OnRepeat 和 onEnd 现在都被调用了。

于 2013-05-29T11:08:49.003 回答