we are implementing custom input method service and we are interested in receiving cursor update events. The documentation of InputMethodSession's updateCursor() says: "This method is called when cursor location of the target input field has changed within its window. This is not normally called, but will only be reported if requested by the input method."

How the input method can request this event?

Thanks in advance,

Andriy

link|improve this question
feedback

1 Answer

It looks like this is unimplemented. In the TextView implementation, calling updateCursor is conditional on InputMethodManager.isWatchingCursor, which is helpfully defined as follows:

/**
 * Returns true if the current input method wants to watch the location
 * of the input editor's cursor in its window.
 */
public boolean isWatchingCursor(View view) {
    return false;
}

Luckily, you can detect cursor movements using onSelectionChanged, although they will be given to you as a logical position within the text box rather than a Rect.

link|improve this answer
onSelectionChanged() does not suit to me because I need to know the precise position of cursor on the screen, not relative cursor position in the text :) On the other hand isWatchingCursor() returns false only in Google's default implementation. Some Android vendors do return true there. E.g. HTC and LG. – uaaquarius Apr 16 '11 at 9:06
Can you link to the source code of those alternative implementations? – rgove Apr 17 '11 at 17:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.