diff options
author | 2012-03-29 17:14:24 -0700 | |
---|---|---|
committer | 2012-03-29 17:14:24 -0700 | |
commit | 156afd824f10f4037d86661a7741d05f4ad96277 (patch) | |
tree | c4fb4697732740137de7dcd77515541f2fe215bc /java/res/layout | |
parent | b92308407f8151d1e1dc982b3d49e30fb5673fbe (diff) | |
parent | 710c69fc82c172f802d2e06276b61e7e077ae094 (diff) | |
download | latinime-156afd824f10f4037d86661a7741d05f4ad96277.tar.gz latinime-156afd824f10f4037d86661a7741d05f4ad96277.tar.xz latinime-156afd824f10f4037d86661a7741d05f4ad96277.zip |
am 710c69fc: Dynamically determine key preview backing view height
* commit '710c69fc82c172f802d2e06276b61e7e077ae094':
Dynamically determine key preview backing view height
Diffstat (limited to 'java/res/layout')
-rw-r--r-- | java/res/layout/input_view.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/res/layout/input_view.xml b/java/res/layout/input_view.xml index 2e0cddc28..198e4ca4a 100644 --- a/java/res/layout/input_view.xml +++ b/java/res/layout/input_view.xml @@ -20,15 +20,15 @@ <com.android.inputmethod.latin.InputView xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="wrap_content" > + <!-- The height of key_preview_backing view will automatically be determined by code. --> <View android:id="@+id/key_preview_backing" android:layout_width="match_parent" - android:layout_height="@dimen/key_preview_backing_height" /> + android:layout_height="0dip" /> <!-- 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 |