From 59b74dd9b9aa000329ccbaee5bd31c531c1d129d Mon Sep 17 00:00:00 2001 From: John Spurlock Date: Wed, 16 Oct 2013 16:28:50 -0400 Subject: 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 --- core/res/res/layout/input_method.xml | 1 + 1 file changed, 1 insertion(+) 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" >