CircularAnim Versions Save

Android ripple animation helper, easy to create Circular Reveal. | Android水波动画帮助类,轻松实现View show/hide/startActivity()特效。(0.4.6)

0.4.6

5 years ago

0.4.5

5 years ago

fullActivity() support drawable - -

0.4.4

5 years ago

fullActivityBuilder() support drawable.

0.4.1

5 years ago

Add triggerPoint() & initDefaultDeployAnimators. Some situation, you can use new api triggerPoint() instead of triggerView(). And now, you can set the default OnDeployAnimator() by using

CircularAnim.initDefaultDeployAnimators(
                new CircularAnim.OnAnimatorDeployListener() {
                    @Override
                    public void deployAnimator(Animator animator) {
                        animator.setInterpolator(new AccelerateInterpolator());
                    }
                },
                new CircularAnim.OnAnimatorDeployListener() {
                    @Override
                    public void deployAnimator(Animator animator) {
                        animator.setInterpolator(new DecelerateInterpolator());
                    }
                },
                null,
                null);

0.3.7

6 years ago

add google().

0.3.4

7 years ago

You can change the default duration and colorOrImageRes when enter app.

0.3.3

7 years ago

0.3.2

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

采用Builder模式,添加动画结束回调。