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.
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.
TranslateAnimation
to serve the purpose.Hope this helps..
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