Reputation: 482
I want to make custom Scroll for Image icons using horizontal scroll-view android , and zoom-in the icon that in front , and zoom-out the others like this picture
Upvotes: 1
Views: 1049
Reputation: 2223
You'll likely want to use one of the cover flow implementations on GitHub. SE answer here. You can also use the native ViewFlipper class in Android, which allows the use of a custom adapter and supports animations, etc., but it shows only one view at a time.
Upvotes: 1