Searched defs:transition (Results 26 - 50 of 73) sorted by relevance

123

/frameworks/base/core/java/android/transition/
H A DArcMotion.java16 package android.transition;
39 * <p>This may be used in XML as an element inside a transition.</p>
H A DChangeImageTransform.java16 package android.transition;
35 * scene change and animates it during the transition.
141 * @param sceneRoot The root of the transition hierarchy.
H A DScene.java17 package android.transition;
163 * combination of the these. No transition will be run when the
164 * scene is entered. To get transition behavior in scene changes,
H A DTransitionUtils.java17 package android.transition;
H A DChangeText.java17 package android.transition;
32 * This transition tracks changes to the text in TextView targets. If the text
33 * changes between the start and end scenes, the transition ensures that the
34 * starting text stays until the transition ends, at which point it changes
55 * their original text during the transition, setting it to the final text when
56 * the transition ends. This is the default behavior.
64 * view at the end of the fade-out animation. This transition is typically
65 * used with a later {@link #CHANGE_BEHAVIOR_IN} transition, allowing more
74 * end text into the affected target view(s). This transition is typically
76 * transition, possibl
[all...]
H A DCrossfade.java17 package android.transition;
39 * This transition captures bitmap representations of target views before and
42 * <p>Note: This transition is not compatible with {@link TextureView}
49 // a given target view. This would save bitmap comparisons in this transition, for example.
94 * Flag specifying that the transition should not animate any
97 * this transition
103 * Flag specifying that the transition should animate any
122 * transition is run.
143 * transition animation, one of {@link #RESIZE_BEHAVIOR_NONE} and
147 * transition i
[all...]
H A DExplode.java16 package android.transition;
31 * This transition tracks changes to the visibility of target views in the
H A DFade.java17 package android.transition;
32 * This transition tracks changes to the visibility of target views in the
38 * <p>The ability of this transition to fade out a particular view, and the
56 * <p>A Fade transition can be described in a resource file by using the
69 * Fading mode used in {@link #Fade(int)} to make the transition
77 * Fading mode used in {@link #Fade(int)} to make the transition
85 * Constructs a Fade transition that will fade targets in and out.
91 * Constructs a Fade transition that will fade targets in
94 * @param fadingMode The behavior of this transition, a combination of
H A DSlide.java16 package android.transition;
31 * This transition tracks changes to the visibility of target views in the
H A DTranslationAnimationCreator.java16 package android.transition;
30 * will not blink out or shift suddenly when the transition is interrupted.
H A DChangeTransform.java16 package android.transition;
37 * scene change and animates those changes during the transition.
41 * transition.
121 * @return <code>true</code> when a changed parent should execute the transition
143 * @return <code>true</code> when a changed parent should execute the transition
479 public void onTransitionEnd(Transition transition) { argument
480 transition.removeListener(this);
488 public void onTransitionPause(Transition transition) { argument
493 public void onTransitionResume(Transition transition) { argument
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
336 removeTransition(Transition transition) argument
365 onTransitionStart(Transition transition) argument
373 onTransitionEnd(Transition transition) argument
[all...]
H A DChangeBounds.java17 package android.transition;
45 * This transition captures the layout bounds of target views before and after
46 * the scene change and animates those changes during the transition.
48 * <p>A ChangeBounds transition can be described in a resource file by using the
192 * {@link android.transition.ChangeClipBounds} is not compatible with ChangeBounds
218 * of every view using this transition. The flag is not enabled by
221 * the transition to determine which parents are the same.
223 * @param reparent true if the transition should track the parent
225 * @deprecated Use {@link android.transition.ChangeTransform} to handle
408 public void onTransitionCancel(Transition transition) {
[all...]
H A DVisibility.java17 package android.transition;
32 * This transition tracks changes to the visibility of target views in the
51 * Mode used in {@link #setMode(int)} to make the transition
58 * Mode used in {@link #setMode(int)} to make the transition
96 * Changes the transition to support appearing and/or disappearing Views, depending
99 * @param mode The behavior supported by this transition, a combination of
265 * @param sceneRoot The root of the transition hierarchy
271 * overall transition for this scene change. A null value means no animation
297 * override this method to make targets appear with the desired transition. The
301 * @param sceneRoot The root of the transition hierarch
[all...]
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
H A DTransitionHelperKitkat.java14 package android.support.v17.leanback.transition;
19 import android.transition.AutoTransition;
20 import android.transition.ChangeBounds;
21 import android.transition.Fade;
22 import android.transition.Scene;
23 import android.transition.Transition;
24 import android.transition.TransitionInflater;
25 import android.transition.TransitionManager;
26 import android.transition.TransitionSet;
27 import android.transition
54 addTransition(Object transitionSet, Object transition) argument
156 setStartDelay(Object transition, long startDelay) argument
160 setDuration(Object transition, long duration) argument
164 exclude(Object transition, int targetId, boolean exclude) argument
168 exclude(Object transition, View targetView, boolean exclude) argument
172 excludeChildren(Object transition, int targetId, boolean exclude) argument
176 excludeChildren(Object transition, View targetView, boolean exclude) argument
180 include(Object transition, int targetId) argument
184 include(Object transition, View targetView) argument
188 setTransitionListener(Object transition, final TransitionListener listener) argument
216 runTransition(Object scene, Object transition) argument
220 setInterpolator(Object transition, Object timeInterpolator) argument
224 addTarget(Object transition, View view) argument
[all...]
H A DSlideKitkat.java16 package android.support.v17.leanback.transition;
36 import android.transition.Visibility;
37 import android.transition.Transition;
38 import android.transition.TransitionValues;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/transition/
H A DTransitionHelper.java14 package android.support.v17.leanback.transition;
104 public void addTransition(Object transitionSet, Object transition); argument
106 public void setTransitionListener(Object transition, TransitionListener listener); argument
108 public void runTransition(Object scene, Object transition); argument
110 public void exclude(Object transition, int targetId, boolean exclude); argument
112 public void exclude(Object transition, View targetView, boolean exclude); argument
114 public void excludeChildren(Object transition, int targetId, boolean exclude); argument
116 public void excludeChildren(Object transition, View target, boolean exclude); argument
118 public void include(Object transition, int targetId); argument
120 public void include(Object transition, Vie argument
122 setStartDelay(Object transition, long startDelay) argument
124 setDuration(Object transition, long duration) argument
126 setInterpolator(Object transition, Object timeInterpolator) argument
128 addTarget(Object transition, View view) argument
237 addTransition(Object transitionSet, Object transition) argument
241 exclude(Object transition, int targetId, boolean exclude) argument
245 exclude(Object transition, View targetView, boolean exclude) argument
249 excludeChildren(Object transition, int targetId, boolean exclude) argument
253 excludeChildren(Object transition, View targetView, boolean exclude) argument
257 include(Object transition, int targetId) argument
261 include(Object transition, View targetView) argument
265 setStartDelay(Object transition, long startDelay) argument
269 setDuration(Object transition, long duration) argument
273 setTransitionListener(Object transition, TransitionListener listener) argument
278 runTransition(Object scene, Object transition) argument
293 setInterpolator(Object transition, Object timeInterpolator) argument
297 addTarget(Object transition, View view) argument
413 addTransition(Object transitionSet, Object transition) argument
418 exclude(Object transition, int targetId, boolean exclude) argument
423 exclude(Object transition, View targetView, boolean exclude) argument
428 excludeChildren(Object transition, int targetId, boolean exclude) argument
433 excludeChildren(Object transition, View targetView, boolean exclude) argument
438 include(Object transition, int targetId) argument
443 include(Object transition, View targetView) argument
448 setStartDelay(Object transition, long startDelay) argument
453 setDuration(Object transition, long duration) argument
458 setTransitionListener(Object transition, TransitionListener listener) argument
463 runTransition(Object scene, Object transition) argument
468 setInterpolator(Object transition, Object timeInterpolator) argument
473 addTarget(Object transition, View view) argument
627 addTransition(Object transitionSet, Object transition) argument
631 exclude(Object transition, int targetId, boolean exclude) argument
635 exclude(Object transition, View targetView, boolean exclude) argument
639 excludeChildren(Object transition, int targetId, boolean exclude) argument
643 excludeChildren(Object transition, View targetView, boolean exclude) argument
647 include(Object transition, int targetId) argument
651 include(Object transition, View targetView) argument
655 setStartDelay(Object transition, long startDelay) argument
659 setDuration(Object transition, long duration) argument
671 setTransitionListener(Object transition, TransitionListener listener) argument
675 runTransition(Object scene, Object transition) argument
679 setInterpolator(Object transition, Object timeInterpolator) argument
683 addTarget(Object transition, View view) argument
[all...]
/frameworks/base/core/java/android/app/
H A DEnterTransitionCoordinator.java25 import android.transition.Transition;
26 import android.transition.TransitionManager;
324 // Now start shared element transition
337 Transition transition = beginTransition(decorView, startEnterTransition,
343 startEnterTransition(transition);
426 public void onTransitionStart(Transition transition) {
431 public void onTransitionEnd(Transition transition) {
432 transition.removeListener(this);
454 public void onTransitionStart(Transition transition) {
455 mEnterViewsTransition = transition;
510 startEnterTransition(Transition transition) argument
[all...]
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardware.java43 * the {@link #GEOFENCE_UNCERTAIN} transition would be triggered. If the accuracy improves later,
44 * an appropriate transition would be triggered. The "reasonably confident" parameter
123 * The constant used to indicate that the transition requested for the geofence is invalid.
226 * called with the following parameters when a transition event occurs.
230 * <li> The transition associated with the geofence. One of
232 * <li> The timestamp when the geofence transition occured.
263 * transition.
506 public void onGeofenceTransition(int geofenceId, int transition, Location location, argument
510 c.onGeofenceTransition(geofenceId, transition, location, timestamp,
/frameworks/compile/mclinker/lib/LD/
H A DEhFrameReader.cpp120 const Action transition[NumOfStates][NumOfTokenKinds] = { local
145 if (!transition[cur_state][token.kind](pEhFrame, entry, token)) {
/frameworks/support/v4/api21/android/support/v4/app/
H A DFragmentTransitionCompat21.java22 import android.transition.Transition;
23 import android.transition.TransitionInflater;
24 import android.transition.TransitionManager;
25 import android.transition.TransitionSet;
40 public static Object cloneTransition(Object transition) { argument
41 if (transition != null) {
42 transition = ((Transition)transition).clone();
44 return transition;
65 Transition transition
208 setSharedElementEpicenter(Transition transition, final EpicenterView epicenterView) argument
366 hasSimpleTarget(Transition transition) argument
[all...]
/frameworks/base/libs/input/
H A DPointerController.cpp194 void PointerController::fade(Transition transition) { argument
201 if (transition == TRANSITION_IMMEDIATE) {
211 void PointerController::unfade(Transition transition) { argument
218 if (transition == TRANSITION_IMMEDIATE) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsHorizontalScrollView.java329 // Skip this work if a transition is running; it sets the scroll values independently
331 LayoutTransition transition = mLinearLayout.getLayoutTransition();
332 if (transition != null && transition.isRunning()) {
342 // Make sure we're still not clobbering the transition-set values, since this
344 LayoutTransition transition = mLinearLayout.getLayoutTransition();
345 if (transition == null || !transition.isRunning()) {
384 public void setLayoutTransition(LayoutTransition transition) { argument
385 // The layout transition applie
[all...]
H A DRecentsVerticalScrollView.java338 // Skip this work if a transition is running; it sets the scroll values independently
340 LayoutTransition transition = mLinearLayout.getLayoutTransition();
341 if (transition != null && transition.isRunning()) {
351 // Make sure we're still not clobbering the transition-set values, since this
353 LayoutTransition transition = mLinearLayout.getLayoutTransition();
354 if (transition == null || !transition.isRunning()) {
394 public void setLayoutTransition(LayoutTransition transition) { argument
395 // The layout transition applie
[all...]
/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java40 * <p>One of the core concepts of these transition animations is that there are two types of
41 * changes that cause the transition and four different animations that run because of
42 * those changes. The changes that trigger the transition are items being added to a container
43 * (referred to as an "appearing" transition) or removed from a container (also known as
48 * the transition may want different animations for the changing items depending on whether
66 * <p>The animations specified for the transition, both the defaults and any custom animations
67 * set on the transition object, are templates only. That is, these animations exist to hold the
70 * set automatically in the process of setting up the transition each time it runs. Each of the
79 * values when the transition begins. Custom animations will be similarly populated with
124 * from the container. This transition typ
1483 startTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
1498 endTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
[all...]

Completed in 328 milliseconds

123