/**
* 抖动动画
*
* @param count 次数
* @return
*/
public static Animation shakeAnimation(int count)
{
Animation translateAnimation = new TranslateAnimation(0, 10, 0, 0);
translateAnimation.setInterpolator(new CycleInterpolator(count));
translateAnimation.setDuration(600);
return translateAnimation;
}
ViewAnimCreator.java 文件源码
java
阅读 44
收藏 0
点赞 0
评论 0
项目:android-project-gallery
作者:
评论列表
文章目录