diff options
author | 2011-09-02 21:03:18 +0900 | |
---|---|---|
committer | 2011-09-03 01:36:26 +0900 | |
commit | abb0c77af15a22b5d0953e477da8747cd5f2259d (patch) | |
tree | 006eef1f380f3a4de35238f744303d90b3c44a19 /java/res/layout/input_view.xml | |
parent | f2bd8a07bb881fb60aab368e7cc3cde30cd7afa8 (diff) | |
download | latinime-abb0c77af15a22b5d0953e477da8747cd5f2259d.tar.gz latinime-abb0c77af15a22b5d0953e477da8747cd5f2259d.tar.xz latinime-abb0c77af15a22b5d0953e477da8747cd5f2259d.zip |
Use separate View for key preview backing
Bug: 5246982
Change-Id: Icec4281cb01771909fcece36647ee42ba179118c
Diffstat (limited to 'java/res/layout/input_view.xml')
-rw-r--r-- | java/res/layout/input_view.xml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/java/res/layout/input_view.xml b/java/res/layout/input_view.xml index 88b48fccd..13560e0cf 100644 --- a/java/res/layout/input_view.xml +++ b/java/res/layout/input_view.xml @@ -25,6 +25,11 @@ android:layout_width="match_parent" android:layout_height="wrap_content" > + <View + android:id="@+id/key_preview_backing" + android:layout_width="match_parent" + android:layout_height="@dimen/key_preview_backing_height" /> + <!-- On tablets, the suggestions strip is centered with horizontal paddings on both sides because width of the landscape mode is too long for the suggestions strip. This LinearLayout is required to hold the paddings. --> @@ -33,8 +38,6 @@ android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content" - android:minHeight="@dimen/suggestions_view_minimum_height" - android:gravity="bottom" > <View android:layout_width="@dimen/suggestions_strip_padding" |