I will be having large text files (privacy statements, etc, probably no more than 100k) and I'd like to have them in either /assets or /raw folder, not in my @strings file.
Also, I'd like to load them in a text view from the xml, I know I can do it programmatically.
One way I know of is to extend the text view and declare a stylable attribute, parse it and do the stuff I need from the code behind.
But is there a native way in android to do that? Without me having to write the logic for it? It doesn't look like an uncommon case.