The following code works for only 1000 characters. If there are more than 1000 characters, the cursor will jump back to the end of 999 characters and start working again.

This is because getTextBeforeCursor(n,flag) can offer only the n number of characters before the current cursor position. In EditText, however, we can get all the text by using getText() method and we can get the length as well. But how to get length of the entire text in the composing text area so that I can set the cursor position to anywhere I want.

InputConnection ic = getCurrentInputConnection();
ic = getCurrentInputConnection();

String str = ic.getTextBeforeCursor(1000,0).toString();
ic.setSelection(str.length()-1,str.length()-1);
link|improve this question
Are you using an EditText? – Aki Dec 11 '11 at 4:47
No,it is a custom softkeyboard which can be used in any text fields/area. – Naung Dec 11 '11 at 6:16
I found it!Just share other ppl sendDownUpKeyEvents(KeyEvent.KEYCODE_DPAD_LEFT); – Naung Dec 14 '11 at 10:57
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.