I'm using a TextView extension class which writes a String like a typewriter, character per character. It works fine but when is writing a word which not fit in the current line, it makes a annoying behaviour and deletes the non fitting workd from the current line and writes it into the next line.
I need to know how to tell a TextView to use Hyphenation, it must force word breaks like this:
superlargewo-
rd
verylarg-
eword
It means putting character - instead of passing the word to the next line
How can that be force into TextView?
TextView
itself offers, AFAIK. – Tuchman