您的位置:首页 > 移动开发 > Android开发

android动画效果_图片闪烁

2013-12-13 11:53 211 查看
private void setFlickerAnimation(ImageView iv_chat_head) {

final Animation animation = new AlphaAnimation(1, 0); // Change alpha from fully visible to invisible

animation.setDuration(500); // duration - half a second

animation.setInterpolator(new LinearInterpolator()); // do not alter animation rate

animation.setRepeatCount(Animation.INFINITE); // Repeat animation infinitely

animation.setRepeatMode(Animation.REVERSE); //

iv_chat_head.setAnimation(animation);

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐