I have a TextView with an OnTouchListener. What I want is the character index the user is pointing to when I get the MotionEvent. Is there any way to get to the underlying font metrics of the TextView?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

I am not aware of a simple direct way to do this but you should be able to put something together using the Paint object of the TextView via a call to TextView.getPaint()

Once you have the paint object you will have access to the underlying FontMetrices via a call to Paint.getFontMetrics() and have access to other functions like Paint.measureText() Paint.getTextBounds(), and Paint.getTextWidths() for accessing the actual size of the displayed text.

link|improve this answer
Thanks, I ended up using this. Too bad there's no simple "pointToCharacterIndex" type of method built-in, but it wasn't rocket science to roll my own thanks to Paint. – Epaga Feb 22 '10 at 15:44
@Tony Blues answer has the pointToCharacterIndex sort of thing you're looking for. – James Moore Jul 6 '11 at 20:21
feedback

Have you tried something like this:

Layout layout = this.getLayout();
if (layout != null)
{
    int line = layout.getLineForVertical(y);
    int offset = layout.getOffsetForHorizontal(line, x);

    // At this point, "offset" should be what you want - the character index
}

Hope this helps...

link|improve this answer
I asked the Google engineers at Google IO office hours, and this is the same thing they came up with. – James Moore May 10 '11 at 4:57
I'm so happy I found this answer, thanks Tony! It works perfectly fine! Now I don't have any problems dealing with touch events even if the TextView contains images. :-) – einschnaehkeee Nov 29 '11 at 14:49
feedback

Your Answer

 
or
required, but never shown

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