Take invisible extractArea height into account
Bug: 5410786 Change-Id: I97ce2d72f86ce62b37d408103863af66f91e7107main
parent
9ad9425e9b
commit
d44647e76f
|
@ -160,6 +160,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
|
||||||
|
|
||||||
private Settings.Values mSettingsValues;
|
private Settings.Values mSettingsValues;
|
||||||
|
|
||||||
|
private View mExtractArea;
|
||||||
private View mKeyPreviewBackingView;
|
private View mKeyPreviewBackingView;
|
||||||
private View mSuggestionsContainer;
|
private View mSuggestionsContainer;
|
||||||
private SuggestionsView mSuggestionsView;
|
private SuggestionsView mSuggestionsView;
|
||||||
|
@ -638,6 +639,8 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
|
||||||
@Override
|
@Override
|
||||||
public void setInputView(View view) {
|
public void setInputView(View view) {
|
||||||
super.setInputView(view);
|
super.setInputView(view);
|
||||||
|
mExtractArea = getWindow().getWindow().getDecorView()
|
||||||
|
.findViewById(android.R.id.extractArea);
|
||||||
mKeyPreviewBackingView = view.findViewById(R.id.key_preview_backing);
|
mKeyPreviewBackingView = view.findViewById(R.id.key_preview_backing);
|
||||||
mSuggestionsContainer = view.findViewById(R.id.suggestions_container);
|
mSuggestionsContainer = view.findViewById(R.id.suggestions_container);
|
||||||
mSuggestionsView = (SuggestionsView) view.findViewById(R.id.suggestions_view);
|
mSuggestionsView = (SuggestionsView) view.findViewById(R.id.suggestions_view);
|
||||||
|
@ -1000,11 +1003,15 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
|
||||||
final KeyboardView inputView = mKeyboardSwitcher.getKeyboardView();
|
final KeyboardView inputView = mKeyboardSwitcher.getKeyboardView();
|
||||||
if (inputView == null || mSuggestionsContainer == null)
|
if (inputView == null || mSuggestionsContainer == null)
|
||||||
return;
|
return;
|
||||||
|
// In fullscreen mode, the height of the extract area managed by InputMethodService should
|
||||||
|
// be considered.
|
||||||
|
// See {@link android.inputmethodservice.InputMethodService#onComputeInsets}.
|
||||||
|
final int extractHeight = isFullscreenMode() ? mExtractArea.getHeight() : 0;
|
||||||
final int backingHeight = (mKeyPreviewBackingView.getVisibility() == View.GONE) ? 0
|
final int backingHeight = (mKeyPreviewBackingView.getVisibility() == View.GONE) ? 0
|
||||||
: mKeyPreviewBackingView.getHeight();
|
: mKeyPreviewBackingView.getHeight();
|
||||||
final int suggestionsHeight = (mSuggestionsContainer.getVisibility() == View.GONE) ? 0
|
final int suggestionsHeight = (mSuggestionsContainer.getVisibility() == View.GONE) ? 0
|
||||||
: mSuggestionsContainer.getHeight();
|
: mSuggestionsContainer.getHeight();
|
||||||
final int extraHeight = backingHeight + suggestionsHeight;
|
final int extraHeight = extractHeight + backingHeight + suggestionsHeight;
|
||||||
int touchY = extraHeight;
|
int touchY = extraHeight;
|
||||||
// Need to set touchable region only if input view is being shown
|
// Need to set touchable region only if input view is being shown
|
||||||
if (mKeyboardSwitcher.isInputViewShown()) {
|
if (mKeyboardSwitcher.isInputViewShown()) {
|
||||||
|
@ -1045,9 +1052,9 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
|
||||||
super.updateFullscreenMode();
|
super.updateFullscreenMode();
|
||||||
|
|
||||||
if (mKeyPreviewBackingView == null) return;
|
if (mKeyPreviewBackingView == null) return;
|
||||||
// In fullscreen mode, no need to have extra space to show the key preview.
|
// In extract mode, no need to have extra space to show the key preview.
|
||||||
// If not, we should have extra space above the keyboard to show the key preview.
|
// If not, we should have extra space above the keyboard to show the key preview.
|
||||||
mKeyPreviewBackingView.setVisibility(isFullscreenMode() ? View.GONE : View.VISIBLE);
|
mKeyPreviewBackingView.setVisibility(isExtractViewShown() ? View.GONE : View.VISIBLE);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue