Loading packages/SystemUI/src/com/android/systemui/stackdivider/Divider.java +6 −4 Original line number Diff line number Diff line Loading @@ -169,12 +169,14 @@ public class Divider extends SystemUI { if (mAdjustedForIme != adjustedForIme) { mAdjustedForIme = adjustedForIme; updateTouchable(); if (!mMinimized) { if (animDuration > 0) { mView.setAdjustedForIme(adjustedForIme, animDuration); } else { mView.setAdjustedForIme(adjustedForIme); } } } }); } Loading services/core/java/com/android/server/wm/DockedStackDividerController.java +3 −3 Original line number Diff line number Diff line Loading @@ -300,7 +300,7 @@ public class DockedStackDividerController implements DimLayerUser { boolean animate, WindowState imeWin, int imeHeight) { if (mAdjustedForIme != adjustedForIme || (adjustedForIme && mImeHeight != imeHeight) || mAdjustedForDivider != adjustedForDivider) { if (animate) { if (animate && !mAnimatingForMinimizedDockedStack) { startImeAdjustAnimation(adjustedForIme, adjustedForDivider, imeWin); } else { // Animation might be delayed, so only notify if we don't run an animation. Loading Loading @@ -547,8 +547,6 @@ public class DockedStackDividerController implements DimLayerUser { private void startImeAdjustAnimation( boolean adjustedForIme, boolean adjustedForDivider, WindowState imeWin) { mAnimatingForIme = true; mAnimationStarted = false; // If we're not in an animation, the starting point depends on whether we're adjusted // or not. If we're already in an animation, we start from where the current animation Loading @@ -562,6 +560,8 @@ public class DockedStackDividerController implements DimLayerUser { mAnimationStart = mLastAnimationProgress; mDividerAnimationStart = mLastDividerProgress; } mAnimatingForIme = true; mAnimationStarted = false; mAnimationTarget = adjustedForIme ? 1 : 0; mDividerAnimationTarget = adjustedForDivider ? 1 : 0; Loading Loading
packages/SystemUI/src/com/android/systemui/stackdivider/Divider.java +6 −4 Original line number Diff line number Diff line Loading @@ -169,12 +169,14 @@ public class Divider extends SystemUI { if (mAdjustedForIme != adjustedForIme) { mAdjustedForIme = adjustedForIme; updateTouchable(); if (!mMinimized) { if (animDuration > 0) { mView.setAdjustedForIme(adjustedForIme, animDuration); } else { mView.setAdjustedForIme(adjustedForIme); } } } }); } Loading
services/core/java/com/android/server/wm/DockedStackDividerController.java +3 −3 Original line number Diff line number Diff line Loading @@ -300,7 +300,7 @@ public class DockedStackDividerController implements DimLayerUser { boolean animate, WindowState imeWin, int imeHeight) { if (mAdjustedForIme != adjustedForIme || (adjustedForIme && mImeHeight != imeHeight) || mAdjustedForDivider != adjustedForDivider) { if (animate) { if (animate && !mAnimatingForMinimizedDockedStack) { startImeAdjustAnimation(adjustedForIme, adjustedForDivider, imeWin); } else { // Animation might be delayed, so only notify if we don't run an animation. Loading Loading @@ -547,8 +547,6 @@ public class DockedStackDividerController implements DimLayerUser { private void startImeAdjustAnimation( boolean adjustedForIme, boolean adjustedForDivider, WindowState imeWin) { mAnimatingForIme = true; mAnimationStarted = false; // If we're not in an animation, the starting point depends on whether we're adjusted // or not. If we're already in an animation, we start from where the current animation Loading @@ -562,6 +560,8 @@ public class DockedStackDividerController implements DimLayerUser { mAnimationStart = mLastAnimationProgress; mDividerAnimationStart = mLastDividerProgress; } mAnimatingForIme = true; mAnimationStarted = false; mAnimationTarget = adjustedForIme ? 1 : 0; mDividerAnimationTarget = adjustedForDivider ? 1 : 0; Loading