Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions docs/xml/Android.Transitions/PatternPathMotion.xml
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,19 @@
<Parameter Name="attrs" Type="Android.Util.IAttributeSet" />
</Parameters>
<Docs>
<param name="context">To be added.</param>
<param name="attrs">To be added.</param>
<summary>Constructs a PatternPathMotion with a straight-line pattern.</summary>
<param name="context">The context used to obtain the PatternPathMotion style attributes.</param>
<param name="attrs">The XML attributes. The <c>android:patternPathData</c> attribute is required.</param>
<summary>Constructs a PatternPathMotion from XML attributes.</summary>
<remarks>
<para>The <c>android:patternPathData</c> attribute supplies the pattern path.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/transition/PatternPathMotion#PatternPathMotion()" title="Reference documentation">Java documentation for <code>android.transition.PatternPathMotion.PatternPathMotion()</code>.</a>
<a href="https://developer.android.com/reference/android/transition/PatternPathMotion" title="Reference documentation">Java documentation for <code>android.transition.PatternPathMotion</code>.</a>
</format>
</para>
<para>
<format type="text/html">
<a href="https://android.googlesource.com/platform/frameworks/base/+/refs/heads/main/core/java/android/transition/PatternPathMotion.java" title="Android Open Source Project source">Android Open Source Project source for XML-constructor behavior.</a>
</format>
Comment thread
jonathanpeppers marked this conversation as resolved.
</para>
<para>
Expand Down Expand Up @@ -213,8 +219,14 @@
<param name="endY">The y coordinate of the ending point.</param>
<summary>Provide a Path to interpolate between two points <c>(startX, startY)</c> and
<c>(endX, endY)</c>.</summary>
<returns>To be added.</returns>
<returns>A Path along which the points are interpolated. The returned path starts at
<c>(startX, startY)</c> and ends at <c>(endX, endY)</c>.</returns>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/transition/PatternPathMotion#getPath(float,%20float,%20float,%20float)" title="Reference documentation">Java documentation for <code>android.transition.PatternPathMotion.getPath(float, float, float, float)</code>.</a>
</format>
</para>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
Expand Down