Merge "Dismiss the more suggestions when the user is sliding down the touch point"

main
Tadashi G. Takaoka 2011-09-12 21:32:40 -07:00 committed by Android (Google) Code Review
commit 02ce5392f5
1 changed files with 4 additions and 5 deletions

View File

@ -808,11 +808,10 @@ public class SuggestionsView extends RelativeLayout implements OnClickListener,
final int translatedY = moreKeysPanel.translateY(y);
if (mCheckingIfModalOrSlidingMode) {
final int deltaX = Math.abs(x - mOriginX);
final int deltaY = Math.abs(y - mOriginY);
if (deltaX >= mMoreSuggestionsModalTolerance
|| deltaY >= mMoreSuggestionsModalTolerance) {
// Decided to be in the sliding input mode
if (Math.abs(x - mOriginX) >= mMoreSuggestionsModalTolerance
|| mOriginY - y >= mMoreSuggestionsModalTolerance) {
// Decided to be in the sliding input mode only when the touch point has been moved
// upward.
mCheckingIfModalOrSlidingMode = false;
tracker.onShowMoreKeysPanel(
translatedX, translatedY, SystemClock.uptimeMillis(), moreKeysPanel);