I've written an IME (InputMethodService) and I need to get all the text from the EditText it is editing. I know one way:

InputConnection inputConnection = getCurrentInputConnection();
inputConnection.append(inputConnection.getTextBeforeCursor(9999, 0))
.append(inputConnection.getTextAfterCursor(9999, 0));

It works, but it seems pretty stupid and clunky. However there is no such method InputConnection.getText().

Is there a better way?

P.S. I cannot access the EditText from my IME because it belongs to the parent app so please don't tell me to use EditText.getText(), unless you know a way to get the EditText!

Thanks in advance, Barry

link|improve this question

69% accept rate
nice question...+1 – CapDroid Sep 16 '11 at 5:08
feedback

1 Answer

up vote 1 down vote accepted

I was also tried very hard for it but still i dont got any proper solution..

Here is also another way for it..

inputConnection.performContextMenuAction(android.R.id.selectAll);
CharSequence sData =  inputConnection.getSelectedText(0);
link|improve this answer
Unfortunately that method is not available in v2.1 (which I'm still using), but thank you anyway and I up-voted because it is still a correct answer. – Barry Fruitman Sep 16 '11 at 18:00
feedback

Your Answer

 
or
required, but never shown

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