Display carousel effect images in android

Carousel

Hi, I want to have an image gallery like this. I tried using jazzyviewpager . This is good, but does not have this effect, can someone tell me how I can achieve this effect to display images.

+7
source share
1 answer

You can extend the gallery view class, use setStaticTransformationsEnabled (true), and independently convert the elements to getChildStaticTransformation.

EDIT: One way to achieve this is available as a sample in the tutorial I wrote here: http://code.google.com/p/android-3d-carousel-view/ . However, this is not exactly what you need, just a starting point that you can further modify. An important aspect is learning how to use getChildStaticTransformation.

+2
source

All Articles