From d6c947ef7bc8364cfd3f49d755e0677d4e93e58d Mon Sep 17 00:00:00 2001 From: Yuichiro Hanada Date: Tue, 3 Sep 2013 17:39:47 +0900 Subject: [PATCH] Change GET_SUGGESTED_WORDS_TIMEOUT to 50. Change-Id: I4d495a782ed1dea1c377837c6579ce5ff74086b5 --- java/src/com/android/inputmethod/latin/LatinIME.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 98767ad22..c8647502e 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -131,7 +131,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen private static final int PERIOD_FOR_AUDIO_AND_HAPTIC_FEEDBACK_IN_KEY_REPEAT = 2; - private static final int GET_SUGGESTED_WORDS_TIMEOUT = 500; + private static final int GET_SUGGESTED_WORDS_TIMEOUT = 50; /** * The name of the scheme used by the Package Manager to warn of a new package installation, @@ -2396,6 +2396,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen } ); + // TODO: Quit blocking the main thread. try { // Wait for the result of getSuggestedWords // We set the time out to avoid ANR.