Is there a way to adjust the spacing between characters in an Android TextView? I believe this is typically called "kerning".

I'm aware of the android:textScaleX attribute, but that compresses the characters along with the spacing.

link|improve this question

67% accept rate
feedback

2 Answers

up vote 4 down vote accepted

AFAIK, you cannot adjust kerning in TextView. You may be able to adjust kerning if you draw the text on the Canvas yourself using the 2D graphics APIs.

link|improve this answer
well, I guess that's that then. Cheers, Mike – emmby Nov 6 '09 at 2:17
Hi, @CommonsWare, How do I adjust kerning if I draw text on the Canvas using the 2D graphics APIs? Would you give me a clue? – Neevek Apr 25 at 3:21
feedback

You can also try using a SpannedString but you would need to parse it and change the character spacing for each of the words

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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