Android add Vertical scroll for TextView
This post about how to add vertical scroll bar for Textview
Check below ex:
This post about how to add vertical scroll bar for Textview
Check below ex:
TextView textView = new TextView(this);
textView.setMovementMethod(new ScrollingMovementMethod());
textView.setText("Hello");
No comments:
Post a Comment