summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Spurlock <jspurlock@google.com>2013-10-16 16:28:50 -0400
committerThe Android Automerger <android-build@google.com>2013-10-17 16:40:12 -0700
commitc18136275b6a5f3fb0b0a38cae5ca32cfc93e30a (patch)
tree38d9933831b7dc8ce88051e2b851ccabd4b905b7
parent192a856df21429a1a152130394225118710d5125 (diff)
downloadbase-c18136275b6a5f3fb0b0a38cae5ca32cfc93e30a.tar.gz
Input method root view should have BOTTOM gravity.
The window had BOTTOM gravity, but the root view was using the LinearLayout default (START | TOP), meaning an IME with a tall inputArea could effectively push the navigation bar guard view off screen. This change simply uses BOTTOM instead of TOP for the root view. Bug:11237795 Change-Id: I681c2b1eddac53589e0d168f09a183d67b1e5322
-rw-r--r--core/res/res/layout/input_method.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/res/res/layout/input_method.xml b/core/res/res/layout/input_method.xml
index 00a3990ba430..e50da00542dd 100644
--- a/core/res/res/layout/input_method.xml
+++ b/core/res/res/layout/input_method.xml
@@ -23,6 +23,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
+ android:gravity="start|bottom"
>
<LinearLayout