/frameworks/base/core/java/android/transition/ |
D | Visibility.java | 186 TransitionValues endValues) { in getVisibilityChangeInfo() argument 197 if (endValues != null && endValues.values.containsKey(PROPNAME_VISIBILITY)) { in getVisibilityChangeInfo() 198 visInfo.endVisibility = (Integer) endValues.values.get(PROPNAME_VISIBILITY); in getVisibilityChangeInfo() 199 visInfo.endParent = (ViewGroup) endValues.values.get(PROPNAME_PARENT); in getVisibilityChangeInfo() 204 if (startValues != null && endValues != null) { in getVisibilityChangeInfo() 231 } else if (endValues == null && visInfo.startVisibility == View.VISIBLE) { in getVisibilityChangeInfo() 240 TransitionValues endValues) { in createAnimator() argument 241 VisibilityInfo visInfo = getVisibilityChangeInfo(startValues, endValues); in createAnimator() 246 endValues, visInfo.endVisibility); in createAnimator() 249 endValues, visInfo.endVisibility in createAnimator() [all …]
|
D | ChangeTransform.java | 225 TransitionValues endValues) { in createAnimator() argument 226 if (startValues == null || endValues == null || in createAnimator() 228 !endValues.values.containsKey(PROPNAME_PARENT)) { in createAnimator() 233 ViewGroup endParent = (ViewGroup) endValues.values.get(PROPNAME_PARENT); in createAnimator() 249 setMatricesForParent(startValues, endValues); in createAnimator() 253 ObjectAnimator transformAnimator = createTransformAnimator(startValues, endValues, in createAnimator() 257 createGhostView(sceneRoot, startValues, endValues); in createAnimator() 264 TransitionValues endValues, final boolean handleParentChange) { in createTransformAnimator() argument 266 Matrix endMatrix = (Matrix) endValues.values.get(PROPNAME_MATRIX); in createTransformAnimator() 280 final Transforms transforms = (Transforms) endValues.values.get(PROPNAME_TRANSFORMS); in createTransformAnimator() [all …]
|
D | ChangeClipBounds.java | 79 TransitionValues endValues) { in createAnimator() argument 80 if (startValues == null || endValues == null in createAnimator() 82 || !endValues.values.containsKey(PROPNAME_CLIP)) { in createAnimator() 86 Rect end = (Rect) endValues.values.get(PROPNAME_CLIP); in createAnimator() 94 end = (Rect) endValues.values.get(PROPNAME_BOUNDS); in createAnimator() 100 endValues.view.setClipBounds(start); in createAnimator() 102 return ObjectAnimator.ofObject(endValues.view, "clipBounds", evaluator, start, end); in createAnimator()
|
D | ChangeScroll.java | 62 TransitionValues endValues) { in createAnimator() argument 63 if (startValues == null || endValues == null) { in createAnimator() 66 final View view = endValues.view; in createAnimator() 68 int endX = (Integer) endValues.values.get(PROPNAME_SCROLL_X); in createAnimator() 70 int endY = (Integer) endValues.values.get(PROPNAME_SCROLL_Y); in createAnimator()
|
D | Rotate.java | 46 TransitionValues endValues) { in createAnimator() argument 47 if (startValues == null || endValues == null) { in createAnimator() 50 final View view = endValues.view; in createAnimator() 52 float endRotation = (Float) endValues.values.get(PROPNAME_ROTATION); in createAnimator()
|
D | Recolor.java | 71 TransitionValues endValues) { in createAnimator() argument 72 if (startValues == null || endValues == null) { in createAnimator() 75 final View view = endValues.view; in createAnimator() 77 Drawable endBackground = (Drawable) endValues.values.get(PROPNAME_BACKGROUND); in createAnimator() 92 int end = (Integer) endValues.values.get(PROPNAME_TEXT_COLOR); in createAnimator()
|
D | CircularPropagation.java | 60 TransitionValues startValues, TransitionValues endValues) { in getStartDelay() argument 61 if (startValues == null && endValues == null) { in getStartDelay() 66 if (endValues == null || getViewVisibility(startValues) == View.VISIBLE) { in getStartDelay() 70 positionValues = endValues; in getStartDelay()
|
D | SidePropagation.java | 75 TransitionValues startValues, TransitionValues endValues) { in getStartDelay() argument 76 if (startValues == null && endValues == null) { in getStartDelay() 82 if (endValues == null || getViewVisibility(startValues) == View.VISIBLE) { in getStartDelay() 86 positionValues = endValues; in getStartDelay()
|
D | ChangeImageTransform.java | 149 TransitionValues endValues) { in createAnimator() argument 150 if (startValues == null || endValues == null) { in createAnimator() 154 Rect endBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS); in createAnimator() 160 Matrix endMatrix = (Matrix) endValues.values.get(PROPNAME_MATRIX); in createAnimator() 169 ImageView imageView = (ImageView) endValues.view; in createAnimator()
|
D | Explode.java | 82 TransitionValues startValues, TransitionValues endValues) { in onAppear() argument 83 if (endValues == null) { in onAppear() 86 Rect bounds = (Rect) endValues.values.get(PROPNAME_SCREEN_BOUNDS); in onAppear() 93 return TranslationAnimationCreator.createAnimation(view, endValues, bounds.left, bounds.top, in onAppear() 99 TransitionValues startValues, TransitionValues endValues) { in onDisappear() argument
|
D | ChangeBounds.java | 263 TransitionValues endValues = getMatchedTransitionValues(startParent, true); in parentMatches() local 264 if (endValues == null) { in parentMatches() 267 parentMatches = endParent == endValues.view; in parentMatches() 275 TransitionValues endValues) { in createAnimator() argument 276 if (startValues == null || endValues == null) { in createAnimator() 280 Map<String, Object> endParentVals = endValues.values; in createAnimator() 286 final View view = endValues.view; in createAnimator() 289 Rect endBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS); in createAnimator() 303 Rect endClip = (Rect) endValues.values.get(PROPNAME_CLIP); in createAnimator() 437 int endX = (Integer) endValues.values.get(PROPNAME_WINDOW_X); in createAnimator() [all …]
|
D | Slide.java | 223 TransitionValues startValues, TransitionValues endValues) { in onAppear() argument 224 if (endValues == null) { in onAppear() 227 int[] position = (int[]) endValues.values.get(PROPNAME_SCREEN_POSITION); in onAppear() 233 .createAnimation(view, endValues, position[0], position[1], in onAppear() 239 TransitionValues startValues, TransitionValues endValues) { in onDisappear() argument
|
D | Crossfade.java | 168 TransitionValues endValues) { in createAnimator() argument 169 if (startValues == null || endValues == null) { in createAnimator() 173 final View view = endValues.view; in createAnimator() 175 Map<String, Object> endVals = endValues.values; in createAnimator() 220 startValues + ", " + endValues); in createAnimator()
|
D | ChangeText.java | 156 TransitionValues endValues) { in createAnimator() argument 157 if (startValues == null || endValues == null || in createAnimator() 158 !(startValues.view instanceof TextView) || !(endValues.view instanceof TextView)) { in createAnimator() 161 final TextView view = (TextView) endValues.view; in createAnimator() 163 Map<String, Object> endVals = endValues.values; in createAnimator()
|
D | Transition.java | 471 TransitionValues endValues) { in createAnimator() argument 554 TransitionValues endValues = unmatchedEnd.get(endView); in matchItemIds() local 555 if (startValues != null && endValues != null) { in matchItemIds() 557 mEndValuesList.add(endValues); in matchItemIds() 581 TransitionValues endValues = unmatchedEnd.get(endView); in matchIds() local 582 if (startValues != null && endValues != null) { in matchIds() 584 mEndValuesList.add(endValues); in matchIds() 608 TransitionValues endValues = unmatchedEnd.get(endView); in matchNames() local 609 if (startValues != null && endValues != null) { in matchNames() 611 mEndValuesList.add(endValues); in matchNames() [all …]
|
D | Fade.java | 129 TransitionValues endValues) { in onAppear() argument 140 TransitionValues endValues) { in onDisappear() argument
|
D | TransitionPropagation.java | 47 TransitionValues startValues, TransitionValues endValues); in getStartDelay() argument
|
D | TransitionSet.java | 389 TransitionValuesMaps endValues, ArrayList<TransitionValues> startValuesList, in createAnimators() argument 405 childTransition.createAnimators(sceneRoot, startValues, endValues, startValuesList, in createAnimators()
|
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/ |
D | Scale.java | 51 TransitionValues endValues) { in createAnimator() argument 52 if (startValues == null || endValues == null) { in createAnimator() 57 final float endScale = (Float) endValues.values.get(PROPNAME_SCALE); in createAnimator()
|
D | TransitionHelperKitkat.java | 109 TransitionValues endValues) { in createAnimator() argument 110 Animator animator = super.createAnimator(sceneRoot, startValues, endValues); in createAnimator() 111 if (animator != null && endValues != null && endValues.view != null) { in createAnimator() 112 animator.setStartDelay(getDelay(endValues.view)); in createAnimator()
|
D | SlideKitkat.java | 229 TransitionValues endValues, int endVisibility) { in onAppear() argument 230 View view = (endValues != null) ? endValues.view : null; in onAppear() 243 TransitionValues endValues, int endVisibility) { in onDisappear() argument
|
/frameworks/base/docs/html/training/transitions/ |
D | custom-transitions.jd | 49 TransitionValues endValues) {} 170 <code>endValues</code> arguments. For target views that only exist in the starting or the
|