Loading packages/SystemUI/src/com/android/systemui/statusbar/stack/StackStateAnimator.java +3 −1 Original line number Diff line number Diff line Loading @@ -95,7 +95,6 @@ public class StackStateAnimator { private void startPropertyAnimation(long newDuration, final boolean hasFinishAction, final ExpandableView child, StackScrollState.ViewState viewState, final float alpha) { child.animate().setInterpolator(mFastOutSlowInInterpolator) .alpha(alpha) .translationY(viewState.yTranslation) .translationZ(viewState.zTranslation) .setDuration(newDuration) Loading @@ -112,6 +111,9 @@ public class StackStateAnimator { } } }); if (alpha != child.getAlpha()) { child.animate().withLayer().alpha(alpha); } } private void startHeightAnimation(long newDuration, final ExpandableView child, Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/stack/StackStateAnimator.java +3 −1 Original line number Diff line number Diff line Loading @@ -95,7 +95,6 @@ public class StackStateAnimator { private void startPropertyAnimation(long newDuration, final boolean hasFinishAction, final ExpandableView child, StackScrollState.ViewState viewState, final float alpha) { child.animate().setInterpolator(mFastOutSlowInInterpolator) .alpha(alpha) .translationY(viewState.yTranslation) .translationZ(viewState.zTranslation) .setDuration(newDuration) Loading @@ -112,6 +111,9 @@ public class StackStateAnimator { } } }); if (alpha != child.getAlpha()) { child.animate().withLayer().alpha(alpha); } } private void startHeightAnimation(long newDuration, final ExpandableView child, Loading