Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I get the coordinates of the cursor in the EditText ? I am not trying to get the cursor position here but the EditText coordinates of the cursor.

In my case, when I send a number via KeyEvent to the EditText, the cursor position (getSelectionStart) is changed, but its location is always at the right of the EditText.

I want to know the coordinates of the cursor (the right of the EditText).

share|improve this question
Can you pls. show a quick example on how u send a number via KeyEvent to the EditText. Thx. – Sebastian Roth Feb 8 '11 at 7:06
sendKeys(KeyEvent.KEYCODE_1); – user607684 Feb 8 '11 at 8:44
It wroks, too mInstrumentation.sendStringSync("1"); – user607684 Feb 8 '11 at 9:13
I mean, I want to write a UT program to automatically send the keyEvent to EditText, then check if the cursor is always at the right of the EditText. I can do the first thing, but have no idea to do the second thing – user607684 Feb 8 '11 at 9:35

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.