Sunday 17 May 2015

Make your android TextView Scrollable

In XML Design: - TextView
1
android:scrollbars="vertical"
In Java Code: - TextView 
1
txtScroll.setMovementMethod(new ScrollingMovementMethod());

No comments: