Searched refs:transition (Results 76 - 100 of 284) sorted by last modified time

1234567891011>>

/frameworks/support/transition/src/android/support/transition/
H A DGhostViewUtils.java17 package android.support.transition;
H A DImageViewUtils.java17 package android.support.transition;
H A DMatrixUtils.java17 package android.support.transition;
H A DObjectAnimatorUtils.java17 package android.support.transition;
H A DPathMotion.java17 package android.support.transition;
27 * Transitions such as {@link android.transition.ChangeBounds} move Views, typically
32 * <p>This may be used in XML as an element inside a transition.</p>
36 * <pathMotion class="my.app.transition.MyPathMotion"/>
H A DPatternPathMotion.java17 package android.support.transition;
34 * <p>This may be used in XML as an element inside a transition.</p>
H A DPropertyValuesHolderUtils.java17 package android.support.transition;
H A DRectEvaluator.java17 package android.support.transition;
H A DScene.java17 package android.support.transition;
161 * combination of the these. No transition will be run when the
162 * scene is entered. To get transition behavior in scene changes,
163 * use one of the methods in {@link android.support.transition.TransitionManager} instead.
224 * @see android.support.transition.Scene(android.view.ViewGroup, android.view.ViewGroup)
244 * @see android.support.transition.Scene(android.view.ViewGroup, android.view.ViewGroup)
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...]
H A DSlide.java17 package android.support.transition;
43 * This transition tracks changes to the visibility of target views in the
H A DStyleable.java17 package android.support.transition;
57 android.R.attr.transition,
H A DTransition.java17 package android.support.transition;
63 * captured property values. A custom transition knows what property values
65 * changes to those values. For example, the {@link Fade} transition tracks
79 * <p>Transitions can be declared in XML resource files inside the <code>res/transition</code>
81 * subclasses along with attributes to define some of the attributes of that transition.
83 * transition:</p>
89 * <p>Note that attributes for the transition are not required, just as they are
92 * elaborate example which declares a {@link TransitionSet} transition with
110 * transition uses a fadingMode of {@link Fade#OUT} instead of the default
113 * this transition act
2288 onTransitionStart(@onNull Transition transition) argument
2299 onTransitionEnd(@onNull Transition transition) argument
2311 onTransitionCancel(@onNull Transition transition) argument
2323 onTransitionPause(@onNull Transition transition) argument
2334 onTransitionResume(@onNull Transition transition) argument
2356 AnimationInfo(View view, String name, Transition transition, WindowIdImpl windowId, TransitionValues values) argument
2434 onGetEpicenter(@onNull Transition transition) argument
[all...]
H A DTransitionInflater.java17 package android.support.transition;
62 * @param resource The resource id of the transition to load
65 * transition cannot be loaded
84 * @param resource The resource id of the transition manager to load
87 * transition manager cannot be loaded
115 Transition transition = null;
133 transition = new Fade(mContext, attrs);
135 transition = new ChangeBounds(mContext, attrs);
137 transition = new Slide(mContext, attrs);
139 transition
220 getTargetIds(XmlPullParser parser, AttributeSet attrs, Transition transition) argument
[all...]
H A DTransitionListenerAdapter.java17 package android.support.transition;
30 public void onTransitionStart(@NonNull Transition transition) { argument
34 public void onTransitionEnd(@NonNull Transition transition) { argument
38 public void onTransitionCancel(@NonNull Transition transition) { argument
42 public void onTransitionPause(@NonNull Transition transition) { argument
46 public void onTransitionResume(@NonNull Transition transition) { argument
H A DTransitionManager.java17 package android.support.transition;
35 * transition objects with calls to {@link #setTransition(Scene, Transition)}
40 * only necessary if the application wants different transition behavior
44 * <code>res/transition</code> directory. TransitionManager resources consist of
46 * <code>transition</code> tags, each of which describe the relationship of
47 * that transition to the from/to scene information in that tag.
53 * &lt;transition android:fromScene="@layout/transition_scene1"
55 * android:transition="@transition/changebounds"/&gt;
56 * &lt;transition androi
99 setTransition(@onNull Scene scene, @Nullable Transition transition) argument
115 setTransition(@onNull Scene fromScene, @NonNull Scene toScene, @Nullable Transition transition) argument
166 changeScene(Scene scene, Transition transition) argument
203 sceneChangeRunTransition(final ViewGroup sceneRoot, final Transition transition) argument
227 MultiListener(Transition transition, ViewGroup sceneRoot) argument
295 sceneChangeSetup(ViewGroup sceneRoot, Transition transition) argument
354 go(@onNull Scene scene, @Nullable Transition transition) argument
394 beginDelayedTransition(@onNull final ViewGroup sceneRoot, @Nullable Transition transition) argument
[all...]
H A DTransitionPropagation.java17 package android.support.transition;
27 * Views will react simultaneously to the start of the transition.
38 * @param sceneRoot The root of the View hierarchy running the transition.
39 * @param transition The transition that created the Animator
42 * @return A start delay to use with the Animator created by <code>transition</code>. The
47 public abstract long getStartDelay(ViewGroup sceneRoot, Transition transition, argument
52 * transition propagation monitors. These values are then passed as the startValues
56 * properties are that the transition cares about and what the values are
63 * transition syste
[all...]
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 DTransitionUtils.java17 package android.support.transition;
H A DTransitionValues.java17 package android.support.transition;
26 * Data structure which holds cached values for the transition.
32 * example, the platform might store a property "alpha" in a transition
36 * {@link android.support.transition.Transition#captureStartValues(TransitionValues)}
40 * for {@link android.support.transition.Transition#createAnimator(android.view.ViewGroup,
H A DTransitionValuesMaps.java17 package android.support.transition;
H A DTranslationAnimationCreator.java17 package android.support.transition;
29 * will not blink out or shift suddenly when the transition is interrupted.
H A DViewGroupUtils.java17 package android.support.transition;
H A DViewUtils.java17 package android.support.transition;
H A DVisibility.java17 package android.support.transition;
39 * This transition tracks changes to the visibility of target views in the
58 * Mode used in {@link #setMode(int)} to make the transition
65 * Mode used in {@link #setMode(int)} to make the transition
111 * Changes the transition to support appearing and/or disappearing Views, depending
114 * @param mode The behavior supported by this transition, a combination of
263 * @param sceneRoot The root of the transition hierarchy
269 * overall transition for this scene change. A null value means no animation
294 * override this method to make targets appear with the desired transition. The
298 * @param sceneRoot The root of the transition hierarch
527 onTransitionStart(@onNull Transition transition) argument
532 onTransitionEnd(@onNull Transition transition) argument
538 onTransitionCancel(@onNull Transition transition) argument
542 onTransitionPause(@onNull Transition transition) argument
547 onTransitionResume(@onNull Transition transition) argument
[all...]

Completed in 60 milliseconds

1234567891011>>