View.AnimationMatrix Property
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.
Return the current transformation matrix of the view. -or- Changes the transformation matrix on the view.
public virtual Android.Graphics.Matrix? AnimationMatrix { [Android.Runtime.Register("getAnimationMatrix", "()Landroid/graphics/Matrix;", "GetGetAnimationMatrixHandler", ApiSince=29)] get; [Android.Runtime.Register("setAnimationMatrix", "(Landroid/graphics/Matrix;)V", "GetSetAnimationMatrix_Landroid_graphics_Matrix_Handler", ApiSince=29)] set; }
[<get: Android.Runtime.Register("getAnimationMatrix", "()Landroid/graphics/Matrix;", "GetGetAnimationMatrixHandler", ApiSince=29)>]
[<set: Android.Runtime.Register("setAnimationMatrix", "(Landroid/graphics/Matrix;)V", "GetSetAnimationMatrix_Landroid_graphics_Matrix_Handler", ApiSince=29)>]
member this.AnimationMatrix : Android.Graphics.Matrix with get, set
Property Value
the Matrix, null indicates there is no transformation
- Attributes
Remarks
Property getter documentation:
Return the current transformation matrix of the view. This is used in animation frameworks, such as android.transition.Transition
. Returns null
when there is no transformation provided by #setAnimationMatrix(Matrix)
. Application developers should use transformation methods like #setRotation(float)
, #setScaleX(float)
, #setScaleX(float)
, #setTranslationX(float)
} and #setTranslationY(float)
(float)}} instead.
Java documentation for android.view.View.getAnimationMatrix()
.
Property setter documentation:
Changes the transformation matrix on the view. This is used in animation frameworks, such as android.transition.Transition
. When the animation finishes, the matrix should be cleared by calling this method with null
as the matrix parameter. Application developers should use transformation methods like #setRotation(float)
, #setScaleX(float)
, #setScaleX(float)
, #setTranslationX(float)
} and #setTranslationY(float)
(float)}} instead.
Java documentation for android.view.View.setAnimationMatrix(android.graphics.Matrix)
.
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.