aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/InputView.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-08-25 18:26:11 +0900
committerTadashi G. Takaoka <takaoka@google.com>2014-08-27 19:20:38 +0900
commit37beaf1529a61228d6240736937789e5622b29ed (patch)
tree3ed20e882c7d9d1fb2a6d8a7ca939437e7019f64 /java/src/com/android/inputmethod/latin/InputView.java
parent97681ebdf16dd94b7ed0607342cc2750fb96a641 (diff)
downloadlatinime-37beaf1529a61228d6240736937789e5622b29ed.tar.gz
latinime-37beaf1529a61228d6240736937789e5622b29ed.tar.xz
latinime-37beaf1529a61228d6240736937789e5622b29ed.zip
Simplify onComputeInsets of LatinIME
This CL expands SoftInputWindow to the entire screen. Thus a key review backing view is eliminated and onComputeInsets() gets simplified too. Bug: 17212702 Bug: 10841052 Bug: 10541453 Change-Id: I2d859f4e4698c64cabe399000821f13bab729996
Diffstat (limited to 'java/src/com/android/inputmethod/latin/InputView.java')
-rw-r--r--java/src/com/android/inputmethod/latin/InputView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/InputView.java b/java/src/com/android/inputmethod/latin/InputView.java
index e9e12f09f..7fa935413 100644
--- a/java/src/com/android/inputmethod/latin/InputView.java
+++ b/java/src/com/android/inputmethod/latin/InputView.java
@@ -21,14 +21,14 @@ import android.graphics.Rect;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
-import android.widget.LinearLayout;
+import android.widget.FrameLayout;
import com.android.inputmethod.accessibility.AccessibilityUtils;
import com.android.inputmethod.keyboard.MainKeyboardView;
import com.android.inputmethod.latin.suggestions.MoreSuggestionsView;
import com.android.inputmethod.latin.suggestions.SuggestionStripView;
-public final class InputView extends LinearLayout {
+public final class InputView extends FrameLayout {
private final Rect mInputViewRect = new Rect();
private MainKeyboardView mMainKeyboardView;
private KeyboardTopPaddingForwarder mKeyboardTopPaddingForwarder;