I would like to create an android widget with a scrollable textview.
The solutions given to this question Making TextView scrollable on Android cannot be applied be
In mainactivity.java:
after code text view:
TextView txt = (TextView) findViewById(R.id.textView id);
Enter this code:
txt.setMovementMethod(new ScrollingMovementMethod());
and you will be ok.