I have a very long string in my strings.xml which is displayed in a TextView with ~10 lines. The string contains an url. The url must be completely displayed in 1 single line. Line breaks before or after the url, but currently it breaks my url after "www."
The url is shorter than the space of the line, that's not the problem. The TextView looks like this:
lalala lululu blabli luli blub
lalabla blu blablo blabl www.
this-is-my-url.com bla.
and it should look like this:
lalala lululu blabli luli blub
lalabla blu blablo blabl
www.this-is-my-url.com bla.
on other displays it also must not look like this:
lalala lululu blabli luli blub lalabla blu blablo
blabl
www.this-is-my-url.com bla.
this could happen when I try a newline before the link
I hope you see my problem