scrollable TextView in android [ 780 views ]
Goal: making a TextView scrollable
put two lines to the layout file:
android:maxLines = "10" <!-- 10 or less lines --> android:scrollbars = "vertical"
plus to the activity:
myTextView.setMovementMethod(new ScrollingMovementMethod());