From af4d04cab6d48ae0d6a5e79bd30f679af87abaad Mon Sep 17 00:00:00 2001 From: Chris Craik Date: Tue, 29 Jul 2014 12:50:14 -0700 Subject: Use RoundRect clipping for circle reveal animation bug:16630975 Also, remove inverse clipping feature from reveal animator. Change-Id: I770a4eb48cd123b0ca0f39d16a0f3eefd1be3653 --- core/java/android/view/ViewAnimationUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/java/android/view/ViewAnimationUtils.java') diff --git a/core/java/android/view/ViewAnimationUtils.java b/core/java/android/view/ViewAnimationUtils.java index 0a53b9181906..ea3efb1ef04e 100644 --- a/core/java/android/view/ViewAnimationUtils.java +++ b/core/java/android/view/ViewAnimationUtils.java @@ -38,6 +38,6 @@ public final class ViewAnimationUtils { */ public static final Animator createCircularReveal(View view, int centerX, int centerY, float startRadius, float endRadius) { - return new RevealAnimator(view, centerX, centerY, startRadius, endRadius, false); + return new RevealAnimator(view, centerX, centerY, startRadius, endRadius); } } -- cgit v1.2.3