Reputation: 496
While going through a IOS app in my company, I saw the buttons set in a horizontal scroll view in a animated manner which looked really good. When asked the IOS developers they said it is a pre built in function available in xcode. I want to know whether it can be achieved in Android.
Details regarding the scroll view.
There are buttons when scrolled over revolves around. To be more precise it moves in the anti-clockwise direction but doesn't disappear from view.
Thanks in advance for the help.
Upvotes: 0
Views: 1039
Reputation: 2318
May be this is what you want or it may help you
http://www.codeproject.com/KB/android/androcarousel.aspx
Upvotes: 1
Reputation: 3952
If my understanding is correct about your question, We have HorizontalScrollView
to achieve that in android. You have to do your own animation while scroll. There is no in build animations while scrolling.
Please go through the following link.
Upvotes: 0