tags:

views:

6

answers:

0

I have a string defined in my strings.xml file which I want to be displayed in a view. Thing is, I want this text to become justified, but I want to pass this information directly from the strings.xml file, not from my layout file or from Java code. I tried something like

<string name="testString"><p align='justify'>My justified test string being some lines long to be able to see if it's justified...</p></string>

and passed this to my TextView, but it is still not justified. Any ideas?

Regards, Sven