aboutsummaryrefslogtreecommitdiffstats
path: root/java/res/layout
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-04-13 03:12:06 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-04-13 03:12:06 -0700
commitdc3d4e8c06c099c3170a9503cf3a73c7f5569ed6 (patch)
tree6464a849e284cce6f1cc98797726987d9783f6e4 /java/res/layout
parenta6abb1f87c0061d7a409066586ba99d8fdbd86e2 (diff)
parent7a3d3ae17f7a8ca0b44e9c92328a7de7cbc80f92 (diff)
downloadlatinime-dc3d4e8c06c099c3170a9503cf3a73c7f5569ed6.tar.gz
latinime-dc3d4e8c06c099c3170a9503cf3a73c7f5569ed6.tar.xz
latinime-dc3d4e8c06c099c3170a9503cf3a73c7f5569ed6.zip
Merge "Fast key preview"
Diffstat (limited to 'java/res/layout')
-rw-r--r--java/res/layout/candidates.xml13
1 files changed, 6 insertions, 7 deletions
diff --git a/java/res/layout/candidates.xml b/java/res/layout/candidates.xml
index 794c4ed42..39e39a1b7 100644
--- a/java/res/layout/candidates.xml
+++ b/java/res/layout/candidates.xml
@@ -21,25 +21,24 @@
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
+ android:gravity="bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:background="@drawable/keyboard_suggest_strip"
+ android:minHeight="@dimen/candidate_strip_minimum_height"
android:paddingRight="@dimen/candidate_strip_padding"
android:paddingLeft="@dimen/candidate_strip_padding"
>
<HorizontalScrollView
- android:id="@+id/candidates_scroll_view"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/candidate_strip_height"
+ android:background="@drawable/keyboard_suggest_strip"
android:fadingEdge="horizontal"
android:fadingEdgeLength="@dimen/candidate_strip_fading_edge_length"
android:scrollbars="none"
>
<com.android.inputmethod.latin.CandidateView
android:id="@+id/candidates"
- android:orientation="horizontal"
android:layout_width="match_parent"
- android:layout_height="@dimen/candidate_strip_height"
- android:background="@drawable/keyboard_suggest_strip" />
+ android:layout_height="match_parent" />
</HorizontalScrollView>
</LinearLayout>