Skip to content

Instantly share code, notes, and snippets.

@lidemin
Created April 25, 2014 04:02
Show Gist options
  • Save lidemin/11277370 to your computer and use it in GitHub Desktop.
Save lidemin/11277370 to your computer and use it in GitHub Desktop.
Android Scrollable TextView
tv.setMovementMethod(new ScrollingMovementMethod() );
<TextView
android:id="@+id/tv"
android:text="@string/hello_world"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollbars="vertical"
android:maxLines="20"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment