Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DStackStateAnimator.java401 float newEndValue = viewState.shadowAlpha; in startShadowAlphaAnimation() local
402 if (previousEndValue != null && previousEndValue == newEndValue) { in startShadowAlphaAnimation()
412 float relativeDiff = newEndValue - previousEndValue; in startShadowAlphaAnimation()
414 values[0].setFloatValues(newStartValue, newEndValue); in startShadowAlphaAnimation()
416 child.setTag(TAG_END_SHADOW_ALPHA, newEndValue); in startShadowAlphaAnimation()
421 child.setShadowAlpha(newEndValue); in startShadowAlphaAnimation()
426 ValueAnimator animator = ValueAnimator.ofFloat(child.getShadowAlpha(), newEndValue); in startShadowAlphaAnimation()
453 child.setTag(TAG_END_SHADOW_ALPHA, newEndValue); in startShadowAlphaAnimation()
460 int newEndValue = viewState.height; in startHeightAnimation() local
461 if (previousEndValue != null && previousEndValue == newEndValue) { in startHeightAnimation()
[all …]
DNotificationStackScrollLayout.java1910 int newEndValue = mBackgroundBounds.top; in startTopAnimation() local
1912 if (previousAnimator != null && previousEndValue == newEndValue) { in startTopAnimation()
1922 values[0].setIntValues(previousStartValue, newEndValue); in startTopAnimation()
1924 mEndAnimationRect.top = newEndValue; in startTopAnimation()
1929 setBackgroundTop(newEndValue); in startTopAnimation()
1937 mCurrentBounds.top, newEndValue); in startTopAnimation()
1952 mEndAnimationRect.top = newEndValue; in startTopAnimation()
1959 int newEndValue = mBackgroundBounds.bottom; in startBottomAnimation() local
1961 if (previousAnimator != null && previousEndValue == newEndValue) { in startBottomAnimation()
1970 values[0].setIntValues(previousStartValue, newEndValue); in startBottomAnimation()
[all …]