摘要:1.闪烁动画 AlphaAnimation privatevoid startFlickerAnimation(ImageView img) { final Animation animation = new AlphaAnimation(1f, 0)f; animation.setDuration(500); animation.setInterpolator(new LinearInterpolator()); // do not alter animation rate ...
阅读全文
posted @ 2014-02-25 20:52