1

I have a textview that is wrapped around a ScrollView to display a large dump of text. So far, i've played around with enabling the scrollbar with android:scrollbars="vertical, and turning it permanently visible with android:fadeScrollbars="false".

The textview scrollbar is so far non-functional. I would like to make it operational. android:fastScrollEnabled seems to only work for ListViews, but not for textviews.

Is there a way to achieve simple thumb scrolling function on a textview? Something similar to this:

enter image description here

rajagrawal
  • 622
  • 4
  • 14
  • 26

1 Answers1

0

Turns out TextView is not an ideal way. I eventually implemented a ListView to make it work as described above.

rajagrawal
  • 622
  • 4
  • 14
  • 26