Reputation: 43
I am developing an android based mobile application. I want to put multiple paragraphs which user can see and can scroll up and down. I don't know how to add multiple paragraphs either via XML or through java code. I am working on Eclipse IDE for android development. I'll be thankful if anybody shed some light on it. Regards!
Upvotes: 0
Views: 849
Reputation: 1007399
Option #1: Use a WebView
.
Option #2: Use a TextView
, perhaps inside a ScrollView
, with your paragraphs being defined in HTML and converted to something a TextView
can use by Html.fromHtml()
.
Upvotes: 1