Searched defs:transition (Results 1 - 25 of 81) sorted by relevance

1234

/frameworks/base/core/tests/coretests/src/android/transition/
H A DAutoTransitionTest.java17 package android.transition;
H A DTransitionTest.java17 package android.transition;
23 import android.transition.Transition.EpicenterCallback;
72 public Rect onGetEpicenter(Transition transition) {
H A DFadeTransitionTest.java17 package android.transition;
23 import android.transition.Transition.TransitionListener;
24 import android.transition.Transition.TransitionListenerAdapter;
132 public TransitionLatch setVisibilityInTransition(final Transition transition, int viewId, argument
137 transition.addListener(latch);
141 TransitionManager.beginDelayedTransition(sceneRoot, transition);
156 public void onTransitionStart(Transition transition) { argument
161 public void onTransitionEnd(Transition transition) { argument
163 transition.removeListener(this);
167 public void onTransitionCancel(Transition transition) { argument
172 onTransitionPause(Transition transition) argument
177 onTransitionResume(Transition transition) argument
191 onTransitionStart(Transition transition) argument
196 onTransitionPause(Transition transition) argument
[all...]
/frameworks/base/core/java/android/transition/
H A DAutoTransition.java17 package android.transition;
23 * Utility class for creating a default transition that automatically fades,
H A DTransitionValuesMaps.java17 package android.transition;
H A DTransitionPropagation.java16 package android.transition;
22 * in {@link android.transition.Transition#createAnimator(ViewGroup,
23 * TransitionValues, TransitionValues)}. A Transition such as {@link android.transition.Explode}
24 * defaults to using {@link android.transition.CircularPropagation} and Views closer to the
27 * Views will react simultaneously to the start of the transition.
36 * @param sceneRoot The root of the View hierarchy running the transition.
37 * @param transition The transition that created the Animator
40 * @return A start delay to use with the Animator created by <code>transition</code>. The
45 public abstract long getStartDelay(ViewGroup sceneRoot, Transition transition, argument
[all...]
H A DPathMotion.java16 package android.transition;
26 * Transitions such as {@link android.transition.ChangeBounds} move Views, typically
31 * <p>This may be used in XML as an element inside a transition.</p>
35 * <pathMotion class="my.app.transition.MyPathMotion"/>
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
H A DCircularPropagation.java16 package android.transition;
25 * start of the transition, Views farther from the epicenter will transition
27 * of the transition or is not visible at the start of the transition, it will
28 * transition sooner when closer to the epicenter and later when farther from
30 * {@link android.transition.Explode}.
38 * Sets the speed at which transition propagation happens, relative to the duration of the
42 * start delay difference will be approximately half of the duration of the transition. A
46 * of the transition
57 getStartDelay(ViewGroup sceneRoot, Transition transition, TransitionValues startValues, TransitionValues endValues) 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 DTransitionInflater.java17 package android.transition;
70 * @param resource The resource id of the transition to load
73 * transition cannot be loaded
98 * @param resource The resource id of the transition manager to load
101 * transition manager cannot be loaded
131 Transition transition = null;
149 transition = new Fade(mContext, attrs);
151 transition = new ChangeBounds(mContext, attrs);
153 transition = new Slide(mContext, attrs);
155 transition
238 getTargetIds(XmlPullParser parser, AttributeSet attrs, Transition transition) argument
[all...]
H A DChangeScroll.java17 package android.transition;
22 import android.transition.Transition;
23 import android.transition.TransitionValues;
29 * This transition captures the scroll properties of targets before and after
H A DPatternPathMotion.java16 package android.transition;
32 * <p>This may be used in XML as an element inside a transition.</p>
H A DRecolor.java17 package android.transition;
30 * This transition tracks changes during scene changes to the
H A DRotate.java17 package android.transition;
25 * This transition captures the rotation property of targets before and after
H A DVisibilityPropagation.java16 package android.transition;
H A DTransitionManager.java17 package android.transition;
32 * transition objects with calls to {@link #setTransition(Scene, Transition)}
37 * only necessary if the application wants different transition behavior
41 * <code>res/transition</code> directory. TransitionManager resources consist of
43 * <code>transition</code> tags, each of which describe the relationship of
44 * that transition to the from/to scene information in that tag.
48 * {@sample development/samples/ApiDemos/res/transition/transitions_mgr.xml TransitionManager}
54 * <code>transition</code> attribute, there is a reference to a resource
55 * file in the <code>res/transition</code> directory which describes that
56 * transition
90 setDefaultTransition(Transition transition) argument
116 setTransition(Scene scene, Transition transition) argument
132 setTransition(Scene fromScene, Scene toScene, Transition transition) argument
181 changeScene(Scene scene, Transition transition) argument
220 sceneChangeRunTransition(final ViewGroup sceneRoot, final Transition transition) argument
243 MultiListener(Transition transition, ViewGroup sceneRoot) argument
312 sceneChangeSetup(ViewGroup sceneRoot, Transition transition) argument
372 go(Scene scene, Transition transition) argument
412 beginDelayedTransition(final ViewGroup sceneRoot, Transition transition) argument
[all...]
/frameworks/base/core/java/com/android/internal/transition/
H A DTransitionConstants.java16 package com.android.internal.transition;
/frameworks/support/v17/leanback/common/android/support/v17/leanback/transition/
H A DTransitionListener.java14 package android.support.v17.leanback.transition;
17 * Listeners for transition start and stop.
24 public void onTransitionStart(Object transition) { argument
27 public void onTransitionEnd(Object transition) { argument
30 public void onTransitionCancel(Object transition) { argument
33 public void onTransitionPause(Object transition) { argument
36 public void onTransitionResume(Object transition) { argument
/frameworks/support/v17/leanback/api21/android/support/v17/leanback/transition/
H A DSlideNoPropagation.java14 package android.support.v17.leanback.transition;
17 import android.transition.Slide;
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
H A DLeanbackTransitionHelperKitKat.java14 package android.support.v17.leanback.transition;
H A DScale.java16 package android.support.v17.leanback.transition;
22 import android.transition.Transition;
23 import android.transition.TransitionValues;
/frameworks/support/v7/appcompat/src/android/support/v7/transition/
H A DActionBarTransition.java18 package android.support.v7.transition;
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareCallback.java30 * The callback called when there is a transition to report for the specific
34 * @param transition One of {@link GeofenceHardware#GEOFENCE_ENTERED},
37 * @param timestamp The timestamp (elapsed real time in milliseconds) when the transition was
41 public void onGeofenceTransition(int geofenceId, int transition, Location location, argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/transition/
H A DLeanbackTransitionHelper.java14 package android.support.v17.leanback.transition;
26 * Helper class to load Leanback specific transition.
39 * Kitkat does not allow load custom transition from resource, calling
40 * LeanbackTransitionHelperKitKat to build custom transition in code.
56 * Load transition from resource or just return stub for API17.
62 return TransitionHelper.loadTransition(context, R.transition.lb_title_in);
67 return TransitionHelper.loadTransition(context, R.transition.lb_title_out);
79 // Helper will create a stub object for transition in this case.

Completed in 8586 milliseconds

1234