Merge "Fix IME and NavBar overlap with Direct Reply" into nyc-dev

am: 2c69d1ecae

* commit '2c69d1ecae5efff06a29bec3d73f9654b8851972':
  Fix IME and NavBar overlap with Direct Reply

Change-Id: I6a3b377cc8604561927c416b18e46eee167233c8
This commit is contained in:
Adrian Roos
2016-05-27 22:07:56 +00:00
committed by android-build-merger

View File

@@ -4360,6 +4360,11 @@ public class PhoneWindowManager implements WindowManagerPolicy {
pf.bottom = df.bottom = of.bottom = mUnrestrictedScreenTop + mUnrestrictedScreenHeight;
// ...with content insets above the nav bar
cf.bottom = vf.bottom = mStableBottom;
if (mStatusBar != null && mFocusedWindow == mStatusBar && canReceiveInput(mStatusBar)) {
// The status bar forces the navigation bar while it's visible. Make sure the IME
// avoids the navigation bar in that case.
pf.right = df.right = of.right = cf.right = vf.right = mStableRight;
}
// IM dock windows always go to the bottom of the screen.
attrs.gravity = Gravity.BOTTOM;
mDockLayer = win.getSurfaceLayer();