Making TextView Scrollable in Android
just set the
android:maxLines="AN_INTEGER"
android:scrollbars="vertical"
propertied of your TextView in your layout's xml file.
Then use:
yourTextView.setMovementMethod(new ScrollingMovementMethod());
in your java code::