How To Create A Circular Reveal Animation In Android With Design Library Version 28
I Saw few Classes Which They Are Have Reveal Word Like This Items :
a
Here's how to do it, with either version 28.0.0 of the Support library, or the new AndroidX library:
private void circularRevealFromMiddle(@NonNull final T circularRevealWidget) {
circularRevealWidget.post(new Runnable() {
@Override
public void run() {
int viewWidth = circularRevealWidget.getWidth();
int viewHeight = circularRevealWidget.getHeight();
int viewDiagonal = (int) Math.sqrt(viewWidth * viewWidth + viewHeight * viewHeight);
final AnimatorSet animatorSet = new AnimatorSet();
animatorSet.playTogether(
CircularRevealCompat.createCircularReveal(circularRevealWidget, viewWidth / 2, viewHeight / 2, 10, viewDiagonal / 2),
ObjectAnimator.ofArgb(circularRevealWidget, CircularRevealWidget.CircularRevealScrimColorProperty.CIRCULAR_REVEAL_SCRIM_COLOR, Color.RED, Color.TRANSPARENT));
animatorSet.setDuration(5000);
animatorSet.start();
}
});
}
Posting the runnable might not be required depending on how you use it, but it helps with 2 potential issues:
CircularRevealCompat.createCircularReveal
onLayout
so those will always be available this way.Knowing that the reveal starts from the middle of the View, we also know that the View will be fully revealed when the radius of the reveal circle equals half of the View's diagonal.
CircularRevealCompat.createCircularReveal
returns an Animator
, similar to the old way of doing it (ViewAnimationUtils.createCircularReveal
).
By default, there is no scrim color on the reveal animation. If you want to animate the scrim color as the View is being revealed, you need an ObjectAnimator
of the special property CircularRevealWidget.CircularRevealScrimColorProperty.CIRCULAR_REVEAL_SCRIM_COLOR
You can easily create the reverse animation as well by swapping the startRadius and endRadius (and the scrim's start and end colors).