Documentation for this section has not yet been entered.
Get method documentation [Android Documentation]
Returns the algorithm object used to interpolate along two dimensions. This is typically
 used to determine the View motion between two points.
 
java Example
<changeBounds>
   <arcMotion android:minimumHorizontalAngle="15"
              android:minimumVerticalAngle="0"
              android:maximumAngle="90"/>
 </changeBounds>When describing in XML, use a nested XML tag for the path motion. It can be one of the built-in tags arcMotion or patternPathMotion or it can be a custom PathMotion using pathMotion with the class attributed with the fully-described class name. For example:
or
Set method documentation [Android Documentation]
Sets the algorithm used to calculate two-dimensional interpolation.
 
java Example
<changeBounds>
     <pathMotion class="my.app.transition.MyPathMotion"/>
 </changeBounds>
 Transitions such as Android.Transitions.ChangeBounds move Views, typically in a straight path between the start and end positions. Applications that desire to have these motions move in a curve can change how Views interpolate in two dimensions by extending PathMotion and implementing PathMotion.GetPath(float, System.Single, System.Single, System.Single).
When describing in XML, use a nested XML tag for the path motion. It can be one of the built-in tags arcMotion or patternPathMotion or it can be a custom PathMotion using pathMotion with the class attributed with the fully-described class name. For example:
or