diff options
author | 2014-10-02 12:24:35 +0900 | |
---|---|---|
committer | 2014-10-02 12:48:26 +0900 | |
commit | 8ab46225b3e819fe31dd3bd487a7e9d1ff859ded (patch) | |
tree | 667c8d76499e66069afb3687dd85c78e0f7f832c /java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | |
parent | 5a4e1c5a67bbb64b6be880c4be41a6e6871769b5 (diff) | |
download | latinime-8ab46225b3e819fe31dd3bd487a7e9d1ff859ded.tar.gz latinime-8ab46225b3e819fe31dd3bd487a7e9d1ff859ded.tar.xz latinime-8ab46225b3e819fe31dd3bd487a7e9d1ff859ded.zip |
Fix unnecessary touch event handling
Bug: 17762449
Change-Id: I698ca91ab977aa65c7bd8a5fb82b3d91264cfbca
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java | 6 |
1 files changed, 6 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 b421a7eb5..e40fd8800 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java +++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionStripView.java @@ -400,6 +400,7 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick if (mStripVisibilityGroup.isShowingImportantNoticeStrip()) { return false; } + // Detecting sliding up finger to show {@link MoreSuggestionsView}. if (!mMoreSuggestionsView.isShowingInParent()) { mLastX = (int)me.getX(); mLastY = (int)me.getY(); @@ -439,6 +440,11 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick @Override public boolean onTouchEvent(final MotionEvent me) { + if (!mMoreSuggestionsView.isShowingInParent()) { + // Ignore any touch event while more suggestions panel hasn't been shown. + // Detecting sliding up is done at {@link #onInterceptTouchEvent}. + return true; + } // In the sliding input mode. {@link MotionEvent} should be forwarded to // {@link MoreSuggestionsView}. final int index = me.getActionIndex(); |