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.

I am building a text editing component that I need to capture the character position after the user touches the screen.

I have added an OnTouchListener, however what I am finding is that I am getting the original character position, before the user had touched the screen.

Is there any way to reverse the order so that my OnTouchListener gets called after the default one

share|improve this question

1 Answer

up vote 0 down vote accepted

For now I am letting the OnTouchListener schedule a thread for 100MS in the future, which give the Android enough time to position the cursor before my process requests the cursor position.

Quite a hack but it works (at least on my Samsung Galaxy S2), I would love if someone could post a better reply.

share|improve this answer

Your Answer

 
discard

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

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