0

I am implementing one small application in Android.In that i am planing to scroll text AUTOMATICALLY.

I want to scroll horizontally like credits in movie and scroll vertically like Head lines scrolling in TV News

Please help me.

KCRaju
  • 544
  • 3
  • 7
  • 21

3 Answers3

0
  • For horizontal scrolling you can refer this post which uses TranslateAnimation to serve the purpose.
  • For vertical scrolling you can refer this post..

Hope this helps..

Community
  • 1
  • 1
CRUSADER
  • 5,486
  • 3
  • 28
  • 64
0

For horizontal scrolling try android:marquee property of textView.

Vijju
  • 3,458
  • 1
  • 22
  • 20
0

Textview can have horizontally scrolling text in this way:
android:marquee

and

in your code do this:

textView.setSelected(true);

very simple.. Hope it helps you

Noman
  • 4,049
  • 10
  • 38
  • 59