user1476497
user1476497

Reputation: 43

Put Multiple Paragraphs on Screen in Android

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

Answers (1)

CommonsWare
CommonsWare

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

Related Questions