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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsHorizontalScrollView.java309 // Skip this work if a transition is running; it sets the scroll values independently
311 LayoutTransition transition = mLinearLayout.getLayoutTransition();
312 if (transition != null && transition.isRunning()) {
322 // Make sure we're still not clobbering the transition-set values, since this
324 LayoutTransition transition = mLinearLayout.getLayoutTransition();
325 if (transition == null || !transition.isRunning()) {
377 public void setLayoutTransition(LayoutTransition transition) { argument
378 // The layout transition applie
[all...]
H A DRecentsVerticalScrollView.java317 // Skip this work if a transition is running; it sets the scroll values independently
319 LayoutTransition transition = mLinearLayout.getLayoutTransition();
320 if (transition != null && transition.isRunning()) {
330 // Make sure we're still not clobbering the transition-set values, since this
332 LayoutTransition transition = mLinearLayout.getLayoutTransition();
333 if (transition == null || !transition.isRunning()) {
386 public void setLayoutTransition(LayoutTransition transition) { argument
387 // The layout transition applie
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletTicker.java239 public void startTransition(LayoutTransition transition, ViewGroup container, argument
242 public void endTransition(LayoutTransition transition, ViewGroup container, argument
/frameworks/base/services/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/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
1451 startTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
1466 endTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
[all...]
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java449 public FragmentTransaction setTransition(int transition) { argument
450 mTransition = transition;
H A DFragmentManager.java205 * Pop the last fragment transition from the manager's fragment
1117 public void removeFragment(Fragment fragment, int transition, int transitionStyle) { argument
1130 transition, transitionStyle, false);
1134 public void hideFragment(Fragment fragment, int transition, int transitionStyle) { argument
1139 Animator anim = loadAnimator(fragment, transition, true,
1166 public void showFragment(Fragment fragment, int transition, int transitionStyle) { argument
1171 Animator anim = loadAnimator(fragment, transition, true,
1186 public void detachFragment(Fragment fragment, int transition, int transitionStyle) { argument
1199 moveToState(fragment, Fragment.CREATED, transition, transitionStyle, false);
1204 public void attachFragment(Fragment fragment, int transition, in argument
[all...]
/frameworks/base/media/java/android/media/videoeditor/
H A DMediaItem.java213 * @param transition The beginning transition
215 void setBeginTransition(Transition transition) { argument
216 mBeginTransition = transition;
220 * @return The begin transition
227 * @param transition The end transition
229 void setEndTransition(Transition transition) { argument
230 mEndTransition = transition;
234 * @return The end transition
[all...]
H A DVideoEditor.java339 * Pending transition generations must be allowed to complete before the
486 * before or after this media item, then this/these transition(s) are
542 * Add a transition between the media items specified by the transition.
543 * If a transition existed at the same position it is invalidated and then
544 * the transition is replaced. Note that the new transition video clip is
547 * the transition video clip.
552 * A crossfade audio transition will be automatically applied regardless of
553 * the video transition
563 addTransition(Transition transition) argument
[all...]
H A DVideoEditorImpl.java71 private static final String TAG_TRANSITION = "transition";
239 * Invalidate the end transition if necessary
265 public synchronized void addTransition(Transition transition) { argument
266 if (transition == null) {
270 final MediaItem beforeMediaItem = transition.getBeforeMediaItem();
271 final MediaItem afterMediaItem = transition.getAfterMediaItem();
295 mTransitions.add(transition);
301 * If a transition already exists at the specified position then
308 afterMediaItem.setEndTransition(transition);
313 * If a transition alread
[all...]
H A DMediaArtistNativeHelper.java400 /** Invalid video transition. */
403 /** Invalid audio transition. */
412 /** External transition is called but this function is not set. */
905 /** No transition */
908 /** Cross fade transition */
911 /** External transition. Currently not available. */
914 /** AlphaMagic transition. */
917 /** Slide transition. */
920 /** Fade to black transition. */
925 * Defines settings for the AlphaMagic transition
2606 generateTransition(Transition transition, EditSettings editSettings, PreviewClipProperties clipPropertiesArray, int index) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java449 public FragmentTransaction setTransition(int transition) { argument
450 mTransition = transition;
H A DFragmentManager.java203 * Pop the last fragment transition from the manager's fragment
1165 public void removeFragment(Fragment fragment, int transition, int transitionStyle) { argument
1178 transition, transitionStyle, false);
1182 public void hideFragment(Fragment fragment, int transition, int transitionStyle) { argument
1187 Animation anim = loadAnimation(fragment, transition, true,
1201 public void showFragment(Fragment fragment, int transition, int transitionStyle) { argument
1206 Animation anim = loadAnimation(fragment, transition, true,
1220 public void detachFragment(Fragment fragment, int transition, int transitionStyle) { argument
1233 moveToState(fragment, Fragment.CREATED, transition, transitionStyle, false);
1238 public void attachFragment(Fragment fragment, int transition, in argument
[all...]
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp107 virtual void fade(Transition transition) { argument
110 virtual void unfade(Transition transition) { argument
/frameworks/base/core/java/android/view/
H A DViewGroup.java404 // views during a transition when they otherwise would have become gone/invisible
2519 // In case view is detached while transition is running
3678 * object. By default, the transition object is null (so layout changes are not animated).
3680 * @param transition The LayoutTransition object that will animated changes in layout. A value
3681 * of <code>null</code> means no transition will run on layout changes.
3684 public void setLayoutTransition(LayoutTransition transition) { argument
3688 mTransition = transition;
3698 * object. By default, the transition object is null (so layout changes are not animated).
3701 * A value of <code>null</code> means no transition will run on layout changes.
4364 // record the fact that we noop'd it; request layout when transition finishe
5239 requestTransitionStart(LayoutTransition transition) argument
[all...]
H A DViewRootImpl.java952 * depends upon, like the bounding rectangles of the affected views). So we add the transition
955 * @param transition The LayoutTransition to be started on the next traversal.
959 public void requestTransitionStart(LayoutTransition transition) { argument
960 if (mPendingTransitions == null || !mPendingTransitions.contains(transition)) {
964 mPendingTransitions.add(transition);

Completed in 6753 milliseconds