public void a()
{
if ((this.b != null) && (this.b.isRunning()))
this.b.cancel();
this.b = ObjectAnimator.ofFloat(this, "phase1", new float[] { 0.0F, 1.0F });
this.b.setDuration(3 * this.k / 2);
this.b.addUpdateListener(this);
this.b.setInterpolator(new AccelerateInterpolator());
this.b.start();
if ((this.c != null) && (this.c.isRunning()))
this.c.cancel();
this.c = ObjectAnimator.ofFloat(this, "phase2", new float[] { 0.0F, 1.0F });
this.c.setDuration(2 * (this.k / 3));
this.c.addUpdateListener(this);
this.c.setStartDelay(2 * this.l);
this.c.start();
this.c.setInterpolator(new AccelerateDecelerateInterpolator());
if ((this.d != null) && (this.d.isRunning()))
this.d.cancel();
this.d = ObjectAnimator.ofFloat(this, "phase3", new float[] { 0.0F, 1.0F });
this.d.setDuration(this.k / 3);
this.d.addUpdateListener(this);
this.d.setInterpolator(new AccelerateInterpolator(2.0F));
this.d.setStartDelay(4 * this.l);
this.d.start();
}
FlowerAnimation.java 文件源码
java
阅读 27
收藏 0
点赞 0
评论 0
项目:Mobike
作者:
评论列表
文章目录