1

I have a media player to play mp3 file and a text view show content of song mp3. Now i want text view can scroll vertical when mp3 run. How I can do it?

Hoa.Tran
  • 713
  • 8
  • 20

1 Answers1

0

Just set the

android:maxLines = "AN_INTEGER"

android:scrollbars = "vertical"

properties of your TextView in your layout's xml file.

Then use:

yourTextView.setMovementMethod(new ScrollingMovementMethod());

for more detail and reference visit this : Making TextView scrollable on Android

Hope this will help you.

Community
  • 1
  • 1
Harshad Pansuriya
  • 17,218
  • 7
  • 58
  • 86