aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorYohei Yukawa <yukawa@google.com>2014-07-21 18:28:37 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-07-21 18:28:37 +0000
commite2ceff04582791af2d25facfa5124b44ea95de3b (patch)
treea66ed2db2714eecd44cf3f9bad2d0f59b2e9e763 /java/src/com/android/inputmethod/latin/LatinIME.java
parent4deb5dc9a209b2e2ce9847a144f3f84008ea3d53 (diff)
parent3f513f107ef0754da2b1c704167325151ce9b7ea (diff)
downloadlatinime-e2ceff04582791af2d25facfa5124b44ea95de3b.tar.gz
latinime-e2ceff04582791af2d25facfa5124b44ea95de3b.tar.xz
latinime-e2ceff04582791af2d25facfa5124b44ea95de3b.zip
am 3f513f10: Enable InputMethodService#onUpdateCursor behind the flag
* commit '3f513f107ef0754da2b1c704167325151ce9b7ea': Enable InputMethodService#onUpdateCursor behind the flag
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java14
1 files changed, 9 insertions, 5 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index dd0060f4a..b641f3a8b 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -55,6 +55,7 @@ import android.view.inputmethod.InputMethodSubtype;
import com.android.inputmethod.accessibility.AccessibilityUtils;
import com.android.inputmethod.annotations.UsedForTesting;
+import com.android.inputmethod.compat.InputConnectionCompatUtils;
import com.android.inputmethod.compat.InputMethodServiceCompatUtils;
import com.android.inputmethod.dictionarypack.DictionaryPackConstants;
import com.android.inputmethod.event.Event;
@@ -413,11 +414,14 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
if (latinIme != null) {
executePendingImsCallback(latinIme, editorInfo, restarting);
latinIme.onStartInputInternal(editorInfo, restarting);
- if (ProductionFlags.USES_CURSOR_ANCHOR_MONITOR) {
- // Currently we need to call this every time when the IME is attached to
- // new application.
- // TODO: Consider if we can do this automatically in the framework.
- InputMethodServiceCompatUtils.setCursorAnchorMonitorMode(latinIme, 1);
+ if (ProductionFlags.ENABLE_CURSOR_RECT_CALLBACK) {
+ InputConnectionCompatUtils.requestCursorRect(
+ latinIme.getCurrentInputConnection(), true /* enableMonitor */);
+ }
+ if (ProductionFlags.ENABLE_CURSOR_ANCHOR_INFO_CALLBACK) {
+ InputConnectionCompatUtils.requestCursorAnchorInfo(
+ latinIme.getCurrentInputConnection(), true /* enableMonitor */,
+ true /* requestImmediateCallback */);
}
}
}