Home
last modified time | relevance | path

Searched refs:newEndValue (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DExpandableViewState.java237 int newEndValue = this.height; in startHeightAnimation() local
238 if (previousEndValue != null && previousEndValue == newEndValue) { in startHeightAnimation()
249 int relativeDiff = newEndValue - previousEndValue; in startHeightAnimation()
251 values[0].setIntValues(newStartValue, newEndValue); in startHeightAnimation()
253 child.setTag(TAG_END_HEIGHT, newEndValue); in startHeightAnimation()
258 child.setActualHeight(newEndValue, false); in startHeightAnimation()
263 ValueAnimator animator = ValueAnimator.ofInt(child.getActualHeight(), newEndValue); in startHeightAnimation()
311 child.setTag(TAG_END_HEIGHT, newEndValue); in startHeightAnimation()
319 float newEndValue = this.shadowAlpha; in startShadowAlphaAnimation() local
320 if (previousEndValue != null && previousEndValue == newEndValue) { in startShadowAlphaAnimation()
[all …]
DViewState.java327 final float newEndValue = this.alpha; in startAlphaAnimation() local
328 if (previousEndValue != null && previousEndValue == newEndValue) { in startAlphaAnimation()
339 float relativeDiff = newEndValue - previousEndValue; in startAlphaAnimation()
341 values[0].setFloatValues(newStartValue, newEndValue); in startAlphaAnimation()
343 child.setTag(TAG_END_ALPHA, newEndValue); in startAlphaAnimation()
348 child.setAlpha(newEndValue); in startAlphaAnimation()
349 if (newEndValue == 0) { in startAlphaAnimation()
356 child.getAlpha(), newEndValue); in startAlphaAnimation()
366 if (newEndValue == 0 && !mWasCancelled) { in startAlphaAnimation()
399 child.setTag(TAG_END_ALPHA, newEndValue); in startAlphaAnimation()
[all …]
DNotificationStackScrollLayout.java2087 int newEndValue = mBackgroundBounds.top; in startTopAnimation() local
2089 if (previousAnimator != null && previousEndValue == newEndValue) { in startTopAnimation()
2099 values[0].setIntValues(previousStartValue, newEndValue); in startTopAnimation()
2101 mEndAnimationRect.top = newEndValue; in startTopAnimation()
2106 setBackgroundTop(newEndValue); in startTopAnimation()
2114 mCurrentBounds.top, newEndValue); in startTopAnimation()
2129 mEndAnimationRect.top = newEndValue; in startTopAnimation()
2136 int newEndValue = mBackgroundBounds.bottom; in startBottomAnimation() local
2138 if (previousAnimator != null && previousEndValue == newEndValue) { in startBottomAnimation()
2147 values[0].setIntValues(previousStartValue, newEndValue); in startBottomAnimation()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DPropertyAnimator.java38 AnimatableProperty animatableProperty, float newEndValue, in startAnimation() argument
45 if (previousEndValue != null && previousEndValue == newEndValue) { in startAnimation()
57 float relativeDiff = newEndValue - previousEndValue; in startAnimation()
59 values[0].setFloatValues(newStartValue, newEndValue); in startAnimation()
61 view.setTag(animationEndTag, newEndValue); in startAnimation()
66 property.set(view, newEndValue); in startAnimation()
72 ValueAnimator animator = ValueAnimator.ofFloat(currentValue, newEndValue); in startAnimation()
102 view.setTag(animationEndTag, newEndValue); in startAnimation()