This base class can be extended to provide motion along a Path to Transitions.
Transitions such as {@link android.transition.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 {@link #getPath(float, float, float, float)}.
This may be used in XML as an element inside a transition.
{@code
<changeBounds>
<pathMotion class="my.app.transition.MyPathMotion"/>
</changeBounds>
}
|