Loading java/src/com/android/inputmethod/latin/LatinIME.java +2 −11 Original line number Diff line number Diff line Loading @@ -1038,17 +1038,8 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar @Override public boolean onEvaluateFullscreenMode() { if (!super.onEvaluateFullscreenMode()) return false; final EditorInfo ei = getCurrentInputEditorInfo(); if (ei != null) { final int imeOptions = ei.imeOptions; if ((imeOptions & EditorInfo.IME_FLAG_NO_EXTRACT_UI) != 0) { return false; } } return mResources.getBoolean(R.bool.config_use_fullscreen_mode); return super.onEvaluateFullscreenMode() && mResources.getBoolean(R.bool.config_use_fullscreen_mode); } @Override Loading Loading
java/src/com/android/inputmethod/latin/LatinIME.java +2 −11 Original line number Diff line number Diff line Loading @@ -1038,17 +1038,8 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar @Override public boolean onEvaluateFullscreenMode() { if (!super.onEvaluateFullscreenMode()) return false; final EditorInfo ei = getCurrentInputEditorInfo(); if (ei != null) { final int imeOptions = ei.imeOptions; if ((imeOptions & EditorInfo.IME_FLAG_NO_EXTRACT_UI) != 0) { return false; } } return mResources.getBoolean(R.bool.config_use_fullscreen_mode); return super.onEvaluateFullscreenMode() && mResources.getBoolean(R.bool.config_use_fullscreen_mode); } @Override Loading