Tuesday 26 August 2014

Make textview scrollable in android

Make textview scrollable in android

Add the following in the textview in xml.

android:scrollbars="vertical"


And finall add 

textView.setMovementMethod(new ScrollingMovementMethod());

in the java file.



No comments: