如何暂停循环显示动画

时间:2017-07-28 05:46:30

标签: java android material-design

我正在使用CircularRevealLibrary来显示我的标题布局。但我想要的是能够以一半的方式停止动画。这该怎么做?我使用以下代码。

int x = v.getRight(), y = v.getBottom(), startRadius = 0;
int endRadius = (int) Math.hypot(v.getWidth(), v.getHeight());

SupportAnimator animator = ViewAnimationUtils.createCircularReveal(v, x, y, startRadius, endRadius);
animator.start();

我得到了这个

enter image description here

但我想暂停一半的动画 enter image description here

0 个答案:

没有答案