am 6495bfc7: Follow-up to I36faf679 Cancel pending messages related to suggestion updates.

Merge commit '6495bfc7a6f6bfa6ab82e7f062ee80f4b6b33368' into gingerbread-plus-aosp

* commit '6495bfc7a6f6bfa6ab82e7f062ee80f4b6b33368':
  Follow-up to I36faf679  Cancel pending messages related to suggestion updates.
main
Ken Wakasa 2010-10-06 02:46:03 -07:00 committed by Android Git Automerger
commit 018afe8c7e
1 changed files with 8 additions and 0 deletions

View File

@ -727,6 +727,14 @@ public class LatinIME extends InputMethodService
if (mUserBigramDictionary != null) mUserBigramDictionary.flushPendingWrites();
}
@Override
public void onFinishInputView(boolean finishingInput) {
super.onFinishInputView(finishingInput);
// Remove penging messages related to update suggestions
mHandler.removeMessages(MSG_UPDATE_SUGGESTIONS);
mHandler.removeMessages(MSG_UPDATE_OLD_SUGGESTIONS);
}
@Override
public void onUpdateExtractedText(int token, ExtractedText text) {
super.onUpdateExtractedText(token, text);