aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorsatok <satok@google.com>2011-01-23 22:10:00 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-01-23 22:10:00 -0800
commit47e482157e3394c680e5b8a1a4d023b242cd307d (patch)
tree8fcef2386804b7e1094a989e6e6ed5d654c2fb96 /java/src/com/android/inputmethod/latin/LatinIME.java
parent156493cf66f29119de7faf8f8b59f3d37e248f07 (diff)
parent910b73127fa207dd26ec8124000262523b0aac0c (diff)
downloadlatinime-47e482157e3394c680e5b8a1a4d023b242cd307d.tar.gz
latinime-47e482157e3394c680e5b8a1a4d023b242cd307d.tar.xz
latinime-47e482157e3394c680e5b8a1a4d023b242cd307d.zip
Merge "Add log for voice IME" into honeycomb
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;