Home
last modified time | relevance | path

Searched refs:endValues (Results 1 – 22 of 22) sorted by relevance

/frameworks/base/core/java/android/transition/
DVisibility.java186 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 …]
DChangeTransform.java225 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 …]
DChangeClipBounds.java79 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()
DChangeScroll.java62 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()
DRotate.java46 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()
DRecolor.java71 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()
DCircularPropagation.java60 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()
DSidePropagation.java75 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()
DChangeImageTransform.java149 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()
DExplode.java82 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
DChangeBounds.java263 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 …]
DSlide.java223 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
DCrossfade.java168 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()
DChangeText.java156 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()
DTransition.java471 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 …]
DFade.java129 TransitionValues endValues) { in onAppear() argument
140 TransitionValues endValues) { in onDisappear() argument
DTransitionPropagation.java47 TransitionValues startValues, TransitionValues endValues); in getStartDelay() argument
DTransitionSet.java389 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/
DScale.java51 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()
DTransitionHelperKitkat.java109 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()
DSlideKitkat.java229 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/
Dcustom-transitions.jd49 TransitionValues endValues) {}
170 <code>endValues</code> arguments. For target views that only exist in the starting or the