ViewGroup.GetChildStaticTransformation(View, Transformation) 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.
Sets t
to be the static transformation of the child, if set, returning a
boolean to indicate whether a static transform was set.
[Android.Runtime.Register("getChildStaticTransformation", "(Landroid/view/View;Landroid/view/animation/Transformation;)Z", "GetGetChildStaticTransformation_Landroid_view_View_Landroid_view_animation_Transformation_Handler")]
protected virtual bool GetChildStaticTransformation (Android.Views.View? child, Android.Views.Animations.Transformation? t);
[<Android.Runtime.Register("getChildStaticTransformation", "(Landroid/view/View;Landroid/view/animation/Transformation;)Z", "GetGetChildStaticTransformation_Landroid_view_View_Landroid_view_animation_Transformation_Handler")>]
abstract member GetChildStaticTransformation : Android.Views.View * Android.Views.Animations.Transformation -> bool
override this.GetChildStaticTransformation : Android.Views.View * Android.Views.Animations.Transformation -> bool
Parameters
- child
- View
The child view whose static transform is being requested
The Transformation which will hold the result
Returns
true if the transformation was set, false otherwise
- Attributes
Remarks
Sets t
to be the static transformation of the child, if set, returning a boolean to indicate whether a static transform was set. The default implementation simply returns false
; subclasses may override this method for different behavior. #setStaticTransformationsEnabled(boolean)
must be set to true for this method to be called.
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.