From f30960e2be64891171dd510ea669552c51c4aec1 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Fri, 14 Aug 2026 03:58:59 -0500 Subject: [PATCH 1/3] Document Android transition modes Refs #212 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- docs/xml/Android.Transitions/FadingMode.xml | 11 ++++++++--- docs/xml/Android.Transitions/TransitionOrdering.xml | 11 ++++++++--- docs/xml/Android.Transitions/VisibilityMode.xml | 11 ++++++++--- 3 files changed, 24 insertions(+), 9 deletions(-) diff --git a/docs/xml/Android.Transitions/FadingMode.xml b/docs/xml/Android.Transitions/FadingMode.xml index c272eb61f..f01a64062 100644 --- a/docs/xml/Android.Transitions/FadingMode.xml +++ b/docs/xml/Android.Transitions/FadingMode.xml @@ -11,8 +11,13 @@ System.Enum - Enumerates values returned by several types and taken as a parameter of the F:Android.Transitions.Fade..ctor member. + Specifies whether a transition targets appearing views, disappearing views, or both. + + + Java documentation for android.transition.Fade. + + 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. @@ -38,7 +43,7 @@ 1 - To be added. + Targets views that are appearing. 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. @@ -65,7 +70,7 @@ 2 - To be added. + Targets views that are disappearing. 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. diff --git a/docs/xml/Android.Transitions/TransitionOrdering.xml b/docs/xml/Android.Transitions/TransitionOrdering.xml index 0b80f0497..f4efb62d3 100644 --- a/docs/xml/Android.Transitions/TransitionOrdering.xml +++ b/docs/xml/Android.Transitions/TransitionOrdering.xml @@ -11,8 +11,13 @@ System.Enum - Enumerates values returned by several types and taken as a parameter of the F:Android.Transitions.TransitionSet.SetOrdering member. + Specifies whether child transitions in a run in sequence or start at the same time. + + + Java documentation for android.transition.TransitionSet. + + 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. @@ -38,7 +43,7 @@ 1 - To be added. + Runs child transitions in sequence; each begins when the preceding child transition ends. 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. @@ -65,7 +70,7 @@ 0 - To be added. + Starts all child transitions at the same time. 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. diff --git a/docs/xml/Android.Transitions/VisibilityMode.xml b/docs/xml/Android.Transitions/VisibilityMode.xml index cea305d5a..46bc0552b 100644 --- a/docs/xml/Android.Transitions/VisibilityMode.xml +++ b/docs/xml/Android.Transitions/VisibilityMode.xml @@ -11,8 +11,13 @@ System.Enum - Enumerates values returned by the , , and members. + Specifies whether a transition targets appearing views, disappearing views, or both. + + + Java documentation for android.transition.Visibility. + + 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. @@ -38,7 +43,7 @@ 1 - To be added. + Targets views that are appearing. 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. @@ -65,7 +70,7 @@ 2 - To be added. + Targets views that are disappearing. 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 f9ef98559d18ec6ade5062dd27e8931886e74a7b Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Fri, 14 Aug 2026 05:03:23 -0500 Subject: [PATCH 2/3] Document transition match targets Refs #212 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- docs/xml/Android.Transitions/MatchTarget.xml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/docs/xml/Android.Transitions/MatchTarget.xml b/docs/xml/Android.Transitions/MatchTarget.xml index 1bd1ba09a..34ae08b90 100644 --- a/docs/xml/Android.Transitions/MatchTarget.xml +++ b/docs/xml/Android.Transitions/MatchTarget.xml @@ -11,8 +11,18 @@ System.Enum - Enumerates values returned by several types. + Specifies a criterion for matching views between the start and end scenes of a transition. + + + Java documentation for android.transition.Transition. + + + + + Android Open Source Project source for transition matching constants. + + 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. @@ -38,7 +48,7 @@ 3 - To be added. + Matches views by their View.Id; negative IDs are not matched. 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. @@ -65,7 +75,7 @@ 1 - To be added. + Matches views by instance. 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. @@ -92,7 +102,7 @@ 4 - To be added. + Matches views by item ID. 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. @@ -119,7 +129,7 @@ 2 - To be added. + Matches views by their transition name; null names are not matched. 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 9cc667613e429f6caf34a9e83539d17bf3bedbf5 Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Fri, 14 Aug 2026 05:14:55 -0500 Subject: [PATCH 3/3] Clarify transition match target usage Refs #212 Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- docs/xml/Android.Transitions/MatchTarget.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/xml/Android.Transitions/MatchTarget.xml b/docs/xml/Android.Transitions/MatchTarget.xml index 34ae08b90..963e01670 100644 --- a/docs/xml/Android.Transitions/MatchTarget.xml +++ b/docs/xml/Android.Transitions/MatchTarget.xml @@ -11,7 +11,7 @@ System.Enum - Specifies a criterion for matching views between the start and end scenes of a transition. + Specifies a criterion for matching views between the start and end scenes passed to .