aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorsatok <satok@google.com>2011-01-24 13:28:12 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-24 13:28:12 -0800
commitbf51f4e1c7a03f09da5ef32ceb77910b0f8386c0 (patch)
tree8fcef2386804b7e1094a989e6e6ed5d654c2fb96 /java/src/com/android/inputmethod/latin/LatinIME.java
parentc19efa2b2b9a2cbbf7564ec87e449d06422073a9 (diff)
parent12a339dd2e85c60313986ba44a7143fe62c134f4 (diff)
downloadlatinime-bf51f4e1c7a03f09da5ef32ceb77910b0f8386c0.tar.gz
latinime-bf51f4e1c7a03f09da5ef32ceb77910b0f8386c0.tar.xz
latinime-bf51f4e1c7a03f09da5ef32ceb77910b0f8386c0.zip
am 12a339dd: am 47e48215: Merge "Add log for voice IME" into honeycomb
* commit '12a339dd2e85c60313986ba44a7143fe62c134f4': Add log for voice IME
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 847038fee..bbe3f78f2 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -84,8 +84,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
SharedPreferences.OnSharedPreferenceChangeListener {
private static final String TAG = "LatinIME";
private static final boolean PERF_DEBUG = false;
- private static final boolean DEBUG = LatinImeLogger.sDBG;
private static final boolean TRACE = false;
+ private static boolean DEBUG = LatinImeLogger.sDBG;
private static final int DELAY_UPDATE_SUGGESTIONS = 180;
private static final int DELAY_UPDATE_OLD_SUGGESTIONS = 300;
@@ -514,6 +514,9 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
final KeyboardSwitcher switcher = mKeyboardSwitcher;
LatinKeyboardView inputView = switcher.getInputView();
+ if(DEBUG) {
+ Log.d(TAG, "onStartInputView: " + inputView);
+ }
// In landscape mode, this method gets called without the input view being created.
if (inputView == null) {
return;