I need get whole text string before the cursor in my InputMethod class. getTextBeforeCursor() gets only "n" characters, but I don't know text's length.

link|improve this question

67% accept rate
feedback

1 Answer

See this documentation. It seems that you can do this:

getCurrentInputConnection().getTextBeforeCursor(100, 0);

or some other large number since it only takes the text from the input - not all the 'n' characters.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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