Is there an example that would allow a few hundred or thousand words, with paragraphs and CRs, to be displayed in a basic Hello World-style text display, complete with a vert. scroll bar (or vertical grab and move up or down)?
Thanks.
Is there an example that would allow a few hundred or thousand words, with paragraphs and CRs, to be displayed in a basic Hello World-style text display, complete with a vert. scroll bar (or vertical grab and move up or down)?
Thanks.
Use a WebView. Convert your carriage returns into <br> tags via replaceAll() on String.
Or, use a TextView inside of a ScrollView.