In the Kindle app for Android, there is a feature where you can long-click on a word in the book, and a menu will show up where you can choose Dictionary, and look up that word.

I am wondering how one would go about capturing those word clicks?

I was thinking of a ClickableSpan but that would capture all clicks, not just long-clicks.

Can anyone point me to some code samples, or suggest a strategy?

Many thanks
Victor

link|improve this question

58% accept rate
feedback

1 Answer

I'm pretty sure that they are using a GestureListener of some sort as the onTouchListener for the View. After the listener is set, they simply handle the longPress events.

link|improve this answer
Hmm, but then how do they detect the word that was clicked? – Victor Grazi Jan 5 at 13:22
Likely, what they do is take the x, y coordinates from the MotionEvent from the onTouch(), then check to see if that x, y hit the word in their view. – Noel Jan 5 at 17:32
Yeah but how do they know which word is in their view, at that pixel location??? – Victor Grazi Jan 6 at 0:34
I don't know how Kindle handles it internally. Ultimately they do some sort of hit test, where they have a rect for a word and they check to see if the x, y from the touch lands inside the word rect. How they get the rect is an implementation detail specific to the Kindle app. – Noel Jan 7 at 2:11
feedback

Your Answer

 
or
required, but never shown

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