From 1f8b15404ad8442ae375f8c7a59b8a6000a1f387 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Sat, 15 Aug 2026 11:41:48 -0500 Subject: [PATCH 1/2] Document PatternPathMotion XML construction Refs #212 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .../Android.Transitions/PatternPathMotion.xml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/docs/xml/Android.Transitions/PatternPathMotion.xml b/docs/xml/Android.Transitions/PatternPathMotion.xml index 4c1a4edb8..f3f624e28 100644 --- a/docs/xml/Android.Transitions/PatternPathMotion.xml +++ b/docs/xml/Android.Transitions/PatternPathMotion.xml @@ -141,13 +141,14 @@ - To be added. - To be added. - Constructs a PatternPathMotion with a straight-line pattern. + The context used to obtain the PatternPathMotion style attributes. + The XML attributes. The android:patternPathData attribute is required. + Constructs a PatternPathMotion from XML attributes. + The android:patternPathData attribute supplies the pattern path. - Java documentation for android.transition.PatternPathMotion.PatternPathMotion(). + Android Open Source Project source for android.transition.PatternPathMotion. @@ -213,8 +214,14 @@ The y coordinate of the ending point. Provide a Path to interpolate between two points (startX, startY) and (endX, endY). - To be added. + A Path along which the points are interpolated. The returned path starts at +(startX, startY) and ends at (endX, endY). + + + Java documentation for android.transition.PatternPathMotion.getPath(float, float, float, float). + + 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. From 2ccc326643ccbf63d04c38903ffabee427f1ccf9 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Sat, 15 Aug 2026 11:52:40 -0500 Subject: [PATCH 2/2] Address PatternPathMotion review feedback Refs #212 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- docs/xml/Android.Transitions/PatternPathMotion.xml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/xml/Android.Transitions/PatternPathMotion.xml b/docs/xml/Android.Transitions/PatternPathMotion.xml index f3f624e28..2819bb4d5 100644 --- a/docs/xml/Android.Transitions/PatternPathMotion.xml +++ b/docs/xml/Android.Transitions/PatternPathMotion.xml @@ -148,7 +148,12 @@ The android:patternPathData attribute supplies the pattern path. - Android Open Source Project source for android.transition.PatternPathMotion. + Java documentation for android.transition.PatternPathMotion. + + + + + Android Open Source Project source for XML-constructor behavior.