aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
diff options
context:
space:
mode:
authorYohei Yukawa <yukawa@google.com>2014-08-16 12:28:13 +0900
committerYohei Yukawa <yukawa@google.com>2014-08-16 12:28:13 +0900
commit16a43d2bd9c5d80f8e50f5a7682b657ee10621e1 (patch)
treef819e431270a12e8d66506a82d8963db1bb6ffb7 /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
parentb8d764772b174cbd37354ffd0009bda56f223dc4 (diff)
downloadlatinime-16a43d2bd9c5d80f8e50f5a7682b657ee10621e1.tar.gz
latinime-16a43d2bd9c5d80f8e50f5a7682b657ee10621e1.tar.xz
latinime-16a43d2bd9c5d80f8e50f5a7682b657ee10621e1.zip
Let the backing view cover the entire content area
With this CL, the backing view starts covering the content area entirely. This allows the IME to render its UI elements at an arbitrary position on the screen. Change-Id: I8b4173410931b776964dddf66de2fe247e51d9de
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java')
-rw-r--r--java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
index 6c4d80ecb..9b8c38a2d 100644
--- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
+++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java
@@ -219,8 +219,8 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick
mStripVisibilityGroup.showSuggestionsStrip();
}
- public int setMoreSuggestionsHeight(final int remainingHeight) {
- return mLayoutHelper.setMoreSuggestionsHeight(remainingHeight);
+ public void setMoreSuggestionsHeight(final int remainingHeight) {
+ mLayoutHelper.setMoreSuggestionsHeight(remainingHeight);
}
public boolean isShowingAddToDictionaryHint() {