DroidLearner
DroidLearner

Reputation: 2135

How do i design scrollable text view in layout?

enter image description here

I'm not getting this "Scrollable Text View" part.. It messes up..

Upvotes: 2

Views: 112

Answers (1)

san
san

Reputation: 1835

You don't need to use a ScrollView actually.

Just set the

android:maxLines = "a number"
android:scrollbars = "vertical"

properties of your TextView in your layout's xml file.

Then use:

yourTextView.setMovementMethod(new ScrollingMovementMethod())

in your code.

it will scrolls automatically.

Upvotes: 4

Related Questions