I am required to use custom fonts in my application.
Problem: For ListViews
that contain rows with Multi-Line TextViews having ellipsize
property set to true, I can see some illegible characters after the ellipsis. Apparently Android pads the String(in TextView) with some characters(ZERO WIDTH NO BREAK-SPACE) unknown to my custom font.
Single line TextView seem to work just fine.
What is the best way to hide these characters or remove the padding? Also, is there any variant of Helvetica font, freely available that would have ZERO WIDTH NO BREAK-SPACE character?
Thanks.