Great Dreams
Great Dreams

Reputation: 91

In Android how can I show a very long text (190 words), is there any idea better then textview?

I have a long text, about almost 1000 character including spaces (190 words). I tried to show that on a large textview, but it wasn't that great, didn't look pro, so is there any other idea?

Thanks for helping, and for trying to help.

Upvotes: 0

Views: 548

Answers (2)

Yevgeny Simkin
Yevgeny Simkin

Reputation: 28349

wrap the text view in a ScrollView, then it doesn't matter how long your text is.

Upvotes: 0

Jimtronic
Jimtronic

Reputation: 1209

What about using a WebView and pull the data from your resources? The data you load into a webview can come from anywhere, including a local file.

http://developer.android.com/resources/articles/using-webviews.html

Upvotes: 3

Related Questions