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?
Asked
Active
Viewed 269 times
1 Answers
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
- 20,189
- 8
- 67
- 95
-
how i can set it auto scroll? – Hoa.Tran Jun 22 '16 at 08:28