diff options
Diffstat (limited to 'java/res/layout')
-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> |