aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorsatok <satok@google.com>2011-01-23 23:38:01 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-23 23:38:01 -0800
commit12a339dd2e85c60313986ba44a7143fe62c134f4 (patch)
tree8fcef2386804b7e1094a989e6e6ed5d654c2fb96 /java/src/com/android/inputmethod/latin/LatinIME.java
parent7ef37c48f41c02c26917707462bab4a4e3a26da6 (diff)
parent47e482157e3394c680e5b8a1a4d023b242cd307d (diff)
downloadlatinime-12a339dd2e85c60313986ba44a7143fe62c134f4.tar.gz
latinime-12a339dd2e85c60313986ba44a7143fe62c134f4.tar.xz
latinime-12a339dd2e85c60313986ba44a7143fe62c134f4.zip
am 47e48215: Merge "Add log for voice IME" into honeycomb
* commit '47e482157e3394c680e5b8a1a4d023b242cd307d': 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;