Skip to content

Instantly share code, notes, and snippets.

@sergiandreplace
Created December 22, 2015 12:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergiandreplace/fc00df7f655688bc91cc to your computer and use it in GitHub Desktop.
Save sergiandreplace/fc00df7f655688bc91cc to your computer and use it in GitHub Desktop.
Making a textview with multiple lines scrollable
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:id="@+id/myTextView"
android:scrollbars="vertical"
/>
myTextView.setMovementMethod(new ScrollingMovementMethod());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment