Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get Cursor Position in Android in Edit Text?

I am using a custom EditText View. I have overridden the OnKeyUp event and am able to capture the Enter Key press. Now my requirement is, when the user has entered a text "Hi. How are you?" and then keeps the cursor after the word "are" and press enter, I need to get the cursor location so that i can extract the text after the cursor at the moment the Enter Key was pressed. Please let me know how to do this. Thank you for your time and help.

like image 309
Vinod Avatar asked Aug 01 '11 15:08

Vinod


People also ask

How do you center text hint on Android?

As stated in other answers, it's android:gravity="center" (or a similar variant) that centers the text, not ellipsize.


1 Answers

You can get the Cursor position using the getSelectionStart() and getSelectionEnd() methods. If no text is highlighted, both getSelectionStart() and getSelectionEnd() return the position of the cursor. So something like this should do the trick:

myEditText.getSelectionStart(); 

or

myEditText.getSelectionEnd(); 

Then if you want to select all the text after the cursor you could use this:

int cursorPosition = myEditText.getSelectionStart(); CharSequence enteredText = myEditText.getText().toString(); CharSequence cursorToEnd = enteredText.subSequence(cursorPosition, enteredText.length()); 
like image 111
theisenp Avatar answered Nov 21 '22 22:11

theisenp