android动画效果_图片闪烁为图片添加闪烁效果,java代码如下:?private void setFlickerAnimation(ImageView
android动画效果_图片闪烁
为图片添加闪烁效果,java代码如下:
?
private void setFlickerAnimation(ImageView iv_chat_head) {final Animation animation = new AlphaAnimation(1, 0); // Change alpha from fully visible to invisibleanimation.setDuration(500); // duration - half a secondanimation.setInterpolator(new LinearInterpolator()); // do not alter animation rateanimation.setRepeatCount(Animation.INFINITE); // Repeat animation infinitelyanimation.setRepeatMode(Animation.REVERSE); // iv_chat_head.setAnimation(animation);}? 