ViewAnimationUtils.CreateCircularReveal(View, Int32, Int32, Single, Single) Method

Definition

Returns an Animator which can animate a clipping circle.

[Android.Runtime.Register("createCircularReveal", "(Landroid/view/View;IIFF)Landroid/animation/Animator;", "")]
public static Android.Animation.Animator? CreateCircularReveal (Android.Views.View? view, int centerX, int centerY, float startRadius, float endRadius);
[<Android.Runtime.Register("createCircularReveal", "(Landroid/view/View;IIFF)Landroid/animation/Animator;", "")>]
static member CreateCircularReveal : Android.Views.View * int * int * single * single -> Android.Animation.Animator

Parameters

view
View

The View will be clipped to the animating circle.

centerX
Int32

The x coordinate of the center of the animating circle, relative to <code>view</code>.

centerY
Int32

The y coordinate of the center of the animating circle, relative to <code>view</code>.

startRadius
Single

The starting radius of the animating circle.

endRadius
Single

The ending radius of the animating circle.

Returns

Animator
Attributes

Remarks

Java documentation for android.view.ViewAnimationUtils.createCircularReveal(android.view.View, int, int, float, float).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to