Are there any other methods to adding static data to a textview
?
Example: I currently have an activity friendship.xml
and there would be a textview
box, the content/text of this is currently defined as @string/friendship.
This is configured under the strings.xml
as :
"<string name="friendship">someday long long time ago.\n
there was a man who\n
was was going to\n
his bla bla bla\n </string>
So although I'm getting the "content" into the textview
, I'm wondering if it's not the wrong way of doing it, considering my strings.xml
file would probably end up being 80MB of the application itself, and what other methods would be available, keeping in to consideration formatting etc.