diff options
author | 2010-12-12 03:58:50 -0800 | |
---|---|---|
committer | 2010-12-12 03:58:50 -0800 | |
commit | 3ef38b2907a8b162bb98a5059a296f0541ae7ef2 (patch) | |
tree | f16f8e085f09accb4f0c1a2615d800290201bb83 /java/res | |
parent | e7f9a2221c6b1231d1242173312ce8f48adf8756 (diff) | |
parent | 7e181fe1010c8eac7814cc67a0c4b3864a10b151 (diff) | |
download | latinime-3ef38b2907a8b162bb98a5059a296f0541ae7ef2.tar.gz latinime-3ef38b2907a8b162bb98a5059a296f0541ae7ef2.tar.xz latinime-3ef38b2907a8b162bb98a5059a296f0541ae7ef2.zip |
Merge "Introduce SuggestedWords class to represent suggestions list"
Diffstat (limited to 'java/res')
-rw-r--r-- | java/res/layout/candidate.xml | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/java/res/layout/candidate.xml b/java/res/layout/candidate.xml index 37179d2af..03be5505b 100644 --- a/java/res/layout/candidate.xml +++ b/java/res/layout/candidate.xml @@ -23,6 +23,7 @@ android:layout_width="match_parent" android:layout_height="@dimen/candidate_strip_height" android:orientation="horizontal" + android:paddingRight="12dip" > <ImageView android:id="@+id/candidate_divider" @@ -44,6 +45,16 @@ android:focusable="true" android:clickable="true" android:gravity="center_vertical|center_horizontal" - android:paddingLeft="12dip" - android:paddingRight="12dip" /> + android:paddingLeft="12dip" /> + <TextView + android:id="@+id/candidate_debug_info" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:visibility="gone" + android:textSize="10dip" + android:textColor="#ff808080" + android:focusable="false" + android:clickable="false" + android:gravity="bottom" + android:paddingLeft="4dip" /> </LinearLayout> |