ViewAnimationUtils.CreateCircularReveal(View, Int32, Int32, Single, Single) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- Attributes
Remarks
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.