Searched refs:transition (Results 126 - 150 of 288) sorted by relevance

1234567891011>>

/frameworks/support/transition/src/android/support/transition/
H A DTransitionValuesMaps.java17 package android.support.transition;
H A DTransitionSet.java17 package android.support.transition;
43 * a {@link ChangeBounds}, followed by a Fade(Fade.OUT) transition.
51 * transition on the affected view targets:</p>
75 * play in sequence; when one child transition ends, the next child
76 * transition begins. Note that a transition does not end until all
78 * transition) end.
83 * Constructs an empty transition set. Add child transitions to the
137 * Adds child transition to this set. The order in which this child transition
150 addTransition(@onNull Transition transition) argument
351 removeTransition(@onNull Transition transition) argument
383 onTransitionStart(@onNull Transition transition) argument
391 onTransitionEnd(@onNull Transition transition) argument
[all...]
H A DRectEvaluator.java17 package android.support.transition;
H A DSidePropagation.java17 package android.support.transition;
28 * the start of the transition, then it will transition sooner when closer to the side and
29 * later when farther. If the view is not visible in the start of the transition, then
30 * it will transition later when closer to the side and sooner when farther from the edge.
31 * This is the default TransitionPropagation used with {@link android.transition.Slide}.
39 * Sets the side that is used to calculate the transition propagation. If the transitioning
40 * View is visible in the start of the transition, then it will transition sooner when
42 * the transition, the
73 getStartDelay(ViewGroup sceneRoot, Transition transition, TransitionValues startValues, TransitionValues endValues) argument
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/util/
H A DStateMachine.java31 * 1. Event based transition, transition will be triggered when {@link #fireEvent(Event)} is called.
32 * 2. Auto transition, transition will be triggered when {@link Transition#mFromState} is executed.
33 * 3. Condiitonal Auto transition, transition will be triggered when {@link Transition#mFromState}
65 * Used in transition
75 * @return True if can proceed and mark the transition INVOKED
159 * out going transition.
161 * only need one of the transition execute
[all...]
/frameworks/base/tests/net/java/com/android/server/connectivity/
H A DLingerMonitorTest.java76 setNotificationSwitch(transition(WIFI, CELLULAR));
86 setNotificationSwitch(transition(WIFI, CELLULAR));
97 setNotificationSwitch(transition(WIFI, CELLULAR));
108 setNotificationSwitch(transition(WIFI, CELLULAR));
122 setNotificationSwitch(transition(WIFI, CELLULAR));
136 setNotificationSwitch(transition(WIFI, CELLULAR));
154 setNotificationSwitch(transition(WIFI, CELLULAR));
175 setNotificationSwitch(transition(WIFI, CELLULAR));
201 setNotificationSwitch(transition(WIFI, CELLULAR));
226 setNotificationSwitch(transition(WIF
303 String transition(String from, String to) { method in class:LingerMonitorTest
[all...]
/frameworks/base/core/java/android/app/
H A DActivityTransitionCoordinator.java26 import android.transition.Transition;
27 import android.transition.TransitionListenerAdapter;
28 import android.transition.TransitionSet;
29 import android.transition.Visibility;
59 * - Exit transition starts by setting transitioning Views to INVISIBLE
65 * 4) The shared element transition completes.
71 * - The shared element transition is started
72 * - If the window allows overlapping transitions, the views transition is started by setting
77 * 7) The exit transition completes in the calling Activity.
80 * - If the window doesn't allow overlapping enter transitions, the enter transition i
351 setTargets(Transition transition, boolean add) argument
387 configureTransition(Transition transition, boolean includeTransitioningViews) argument
408 removeExcludedViews(Transition transition, ArrayList<View> views) argument
425 findIncludedViews(Transition transition, ArrayList<View> views, ArraySet<View> included) argument
981 onTransitionStart(Transition transition) argument
991 onTransitionEnd(Transition transition) argument
1024 noLayoutSuppressionForVisibilityTransitions(Transition transition) argument
1048 onGetEpicenter(Transition transition) argument
[all...]
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DInstanceTargets.java22 import android.transition.ChangeBounds;
23 import android.transition.TransitionManager;
H A DSurfaceAndTextureViews.java30 import android.transition.Crossfade;
31 import android.transition.ChangeBounds;
32 import android.transition.Scene;
33 import android.transition.TransitionSet;
34 import android.transition.TransitionManager;
69 final TransitionSet transition = new TransitionSet();
70 transition.addTransition(new ChangeBounds()).addTransition(new Crossfade().addTarget(0).
97 TransitionManager.go(newScene, transition);
H A DFadingHierarchy.java22 import android.transition.TransitionManager;
/frameworks/support/fragment/tests/java/android/support/v4/app/
H A DTrackingTransition.java20 import android.transition.Transition;
21 import android.transition.TransitionValues;
28 * A transition that tracks which targets are applied to it.
H A DTrackingVisibility.java20 import android.transition.TransitionValues;
21 import android.transition.Visibility;
28 * Visibility transition that tracks which targets are applied to it.
29 * This transition does no animation.
/frameworks/base/core/java/android/transition/
H A DTransitionSet.java17 package android.transition;
37 * a {@link ChangeBounds}, followed by a Fade(Fade.OUT) transition.
46 * transition on the affected view targets:</p>
69 * play in sequence; when one child transition ends, the next child
70 * transition begins. Note that a transition does not end until all
72 * transition) end.
77 * Constructs an empty transition set. Add child transitions to the
130 * Adds child transition to this set. The order in which this child transition
142 addTransition(Transition transition) argument
327 removeTransition(Transition transition) argument
356 onTransitionStart(Transition transition) argument
364 onTransitionEnd(Transition transition) argument
[all...]
H A DSidePropagation.java16 package android.transition;
19 import android.transition.Slide.GravityFlag;
27 * the start of the transition, then it will transition sooner when closer to the side and
28 * later when farther. If the view is not visible in the start of the transition, then
29 * it will transition later when closer to the side and sooner when farther from the edge.
30 * This is the default TransitionPropagation used with {@link android.transition.Slide}.
39 * Sets the side that is used to calculate the transition propagation. If the transitioning
40 * View is visible in the start of the transition, then it will transition soone
73 getStartDelay(ViewGroup sceneRoot, Transition transition, TransitionValues startValues, TransitionValues endValues) argument
[all...]
H A DTransitionValues.java17 package android.transition;
27 * Data structure which holds cached values for the transition.
33 * example, the platform might store a property "alpha" in a transition
/frameworks/support/frameworks/support/samples/SupportTransitionDemos/src/com/example/android/support/transition/widget/
H A DFragmentTransitionUsage.java17 package com.example.android.support.transition.widget;
21 import android.support.transition.AutoTransition;
22 import android.support.transition.Fade;
23 import android.support.transition.Transition;
32 import com.example.android.support.transition.R;
/frameworks/support/samples/SupportTransitionDemos/src/com/example/android/support/transition/widget/
H A DFragmentTransitionUsage.java17 package com.example.android.support.transition.widget;
21 import android.support.transition.AutoTransition;
22 import android.support.transition.Fade;
23 import android.support.transition.Transition;
32 import com.example.android.support.transition.R;
/frameworks/support/transition/tests/src/android/support/transition/
H A DPropagationTest.java17 package android.support.transition;
26 import android.support.transition.test.R;
63 public Rect onGetEpicenter(@NonNull Transition transition) {
/frameworks/support/transition/api14/android/support/transition/
H A DPathProperty.java17 package android.support.transition;
H A DViewGroupOverlayApi14.java17 package android.support.transition;
/frameworks/support/transition/api18/android/support/transition/
H A DViewGroupOverlayApi18.java17 package android.support.transition;
H A DViewGroupUtilsApi18.java17 package android.support.transition;
/frameworks/support/transition/api21/android/support/transition/
H A DImageViewUtilsApi21.java17 package android.support.transition;
/frameworks/support/transition/api22/android/support/transition/
H A DViewUtilsApi22.java17 package android.support.transition;
/frameworks/support/transition/base/android/support/transition/
H A DViewUtilsImpl.java17 package android.support.transition;

Completed in 589 milliseconds

1234567891011>>