我正在尝试制作闪烁的图像按钮。
我正在考虑使用淡入和淡出,但我不能在1个图像按钮上一起使用它。以下代码只闪烁一次:
Animation fadeIn = new AlphaAnimation(0, 1);
fadeIn.setInterpolator(new DecelerateInterpolator());
fadeIn.setDuration(1000);
Animation fadeOut = new AlphaAnimation(1, 0);
fadeOut.setInterpolator(new AccelerateInterpolator());
fadeOut.setStartOffset(1000);
fadeOut.setDuration(1000);
AnimationSet animation = new AnimationSet(false);
animation.addAnimation(fadeIn);
animation.addAnimation(fadeOut);
this.setAnimation(animation);`
答案 0 :(得分:0)
只需添加:
AnimationSet animation = new AnimationSet(false);
...
animation.setRepeatCount(Animation.INFINITE);
this.setAnimation(animation);
显然,根据需要调整计数。