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);