我的应用程序存在问题:我希望在重复动画时修改ImageView,但不会调用onAnimationRepeat
函数(来自AnimationListener
类)。
这是重现它的示例:
com.test.test
作为包名)anim
文件夹中创建文件夹res
并使用这些行创建fade_in.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
颜色不会改变......你能帮助我吗?
答案 0 :(得分: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) {}
});
这样可行。
答案 1 :(得分:0)
要重复动画,您需要设置动画的重复模式和重复次数。
anim.setRepeatMode(Animation.INFINITE);
anim.setRepeatCount(5);
答案 2 :(得分:0)
我遇到了同样的问题并且阅读了很多资源和动画问题的答案。每个人都在抱怨AnimationSet和重复计数问题。所以我从XML中删除了标签并且它有效。 OnRepeat和onEnd现在都被调用了。