diff options
author | 2011-08-26 19:30:57 +0900 | |
---|---|---|
committer | 2011-08-26 20:05:19 +0900 | |
commit | 013ba3e3e785980b74db83ac5ab1e11b438485da (patch) | |
tree | 10210d08630d3d56763616050a874b7549a6d933 /java/res | |
parent | 7fe084a85620bdb6a849c65dade1e8db36b49e0e (diff) | |
download | latinime-013ba3e3e785980b74db83ac5ab1e11b438485da.tar.gz latinime-013ba3e3e785980b74db83ac5ab1e11b438485da.tar.xz latinime-013ba3e3e785980b74db83ac5ab1e11b438485da.zip |
Move debug information back to suggestions strip
Change-Id: I8cfad5f780a481a251cc4f752bff3cda5ae3ffbe
Diffstat (limited to 'java/res')
-rw-r--r-- | java/res/layout/candidates_strip.xml | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/java/res/layout/candidates_strip.xml b/java/res/layout/candidates_strip.xml index 46cd691a7..fdb13f73e 100644 --- a/java/res/layout/candidates_strip.xml +++ b/java/res/layout/candidates_strip.xml @@ -22,9 +22,16 @@ xmlns:android="http://schemas.android.com/apk/res/android" xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin" > - <LinearLayout - android:id="@+id/candidates_strip" - android:orientation="horizontal" + <!-- Placer for debug information --> + <RelativeLayout + android:id="@+id/candidates_placer" android:layout_width="match_parent" - android:layout_height="match_parent" /> + android:layout_height="match_parent" + > + <LinearLayout + android:id="@+id/candidates_strip" + android:orientation="horizontal" + android:layout_width="match_parent" + android:layout_height="match_parent" /> + </RelativeLayout> </merge> |