Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit be2fef4d authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android (Google) Code Review
Browse files

Merge "Fix backing view height calculation in landscape orientation" into jb-dev

parents f8233ec3 b94f4cc7
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -969,7 +969,9 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
        final KeyboardView inputView = mKeyboardSwitcher.getKeyboardView();
        if (inputView == null || mSuggestionsContainer == null)
            return;
        final int backingHeight = getAdjustedBackingViewHeight();
        final int adjustedBackingHeight = getAdjustedBackingViewHeight();
        final boolean backingGone = (mKeyPreviewBackingView.getVisibility() == View.GONE);
        final int backingHeight = backingGone ? 0 : adjustedBackingHeight;
        // In fullscreen mode, the height of the extract area managed by InputMethodService should
        // be considered.
        // See {@link android.inputmethodservice.InputMethodService#onComputeInsets}.