diff options
author | 2014-01-28 05:19:52 +0000 | |
---|---|---|
committer | 2014-01-28 05:19:53 +0000 | |
commit | 02b087090e9a4fe1a388bd18939711f988931744 (patch) | |
tree | eb7df1c6d74888ccedefc7d03ed79ac242511632 /java/src | |
parent | 02725535784e03c3d6789251569204d2e397000f (diff) | |
parent | 9ac6c9064d24a3a0e96db470bb76c997c51bb5c8 (diff) | |
download | latinime-02b087090e9a4fe1a388bd18939711f988931744.tar.gz latinime-02b087090e9a4fe1a388bd18939711f988931744.tar.xz latinime-02b087090e9a4fe1a388bd18939711f988931744.zip |
Merge "Fix test fails caused by I8bede13c87"
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java index 32552ebe7..e44bd70a1 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java +++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java @@ -26,6 +26,7 @@ import android.view.View; import android.view.View.OnClickListener; import android.view.View.OnLongClickListener; import android.view.ViewGroup; +import android.view.ViewParent; import android.widget.RelativeLayout; import android.widget.TextView; @@ -189,10 +190,21 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick public void clear() { mSuggestionsStrip.removeAllViews(); + removeAllDebugInfoViews(); mStripVisibilityGroup.showSuggestionsStrip(); dismissMoreSuggestionsPanel(); } + private void removeAllDebugInfoViews() { + // The debug info views may be placed as children views of this {@link SuggestionStripView}. + for (final View debugInfoView : mDebugInfoViews) { + final ViewParent parent = debugInfoView.getParent(); + if (parent instanceof ViewGroup) { + ((ViewGroup)parent).removeView(debugInfoView); + } + } + } + private final MoreSuggestionsListener mMoreSuggestionsListener = new MoreSuggestionsListener() { @Override public void onSuggestionSelected(final int index, final SuggestedWordInfo wordInfo) { |