Searched defs:transitionType (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java331 * Enables the specified transitionType for this LayoutTransition object.
336 * {@link #CHANGING} transitionType.
338 * @param transitionType One of {@link #CHANGE_APPEARING}, {@link #CHANGE_DISAPPEARING},
341 public void enableTransitionType(int transitionType) { argument
342 switch (transitionType) {
362 * Disables the specified transitionType for this LayoutTransition object.
365 * @param transitionType One of {@link #CHANGE_APPEARING}, {@link #CHANGE_DISAPPEARING},
368 public void disableTransitionType(int transitionType) { argument
369 switch (transitionType) {
389 * Returns whether the specified transitionType i
396 isTransitionTypeEnabled(int transitionType) argument
423 setStartDelay(int transitionType, long delay) argument
454 getStartDelay(int transitionType) argument
482 setDuration(int transitionType, long duration) argument
513 getDuration(int transitionType) argument
539 setStagger(int transitionType, long duration) argument
563 getStagger(int transitionType) argument
587 setInterpolator(int transitionType, TimeInterpolator interpolator) argument
618 getInterpolator(int transitionType) argument
665 setAnimator(int transitionType, Animator animator) argument
694 getAnimator(int transitionType) argument
1111 cancel(int transitionType) argument
1479 startTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
1494 endTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarView.java108 View view, int transitionType) {
111 } else if (view.getId() == R.id.home && transitionType == LayoutTransition.APPEARING) {
113 mStartDelay = transition.getStartDelay(transitionType);
114 mDuration = transition.getDuration(transitionType);
115 mInterpolator = transition.getInterpolator(transitionType);
121 View view, int transitionType) {
124 } else if (view.getId() == R.id.home && transitionType == LayoutTransition.APPEARING) {
107 startTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
120 endTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
/frameworks/base/media/java/android/media/videoeditor/
H A DMediaArtistNativeHelper.java3419 * @param transitionType The transition behavior in JAVA layer
3423 int getVideoTransitionBehaviour(int transitionType) { argument
3425 switch (transitionType) {

Completed in 83 milliseconds