I have an Android TextView displaying some text, and it\'s multi-line. However, in the text, I sometimes have domain names; how can I stop the TextView from splitting the l
for me didn't work solution of @ozbek respectively @Matt McMinn, I had to change line
else if(Character.isWhitespace(curChar))
for
} else if (curChar == '\u00A0') {
but otherwise great solution, thanks