7

Carousel

Hi I want to have image gallery like this.I have tried using jazzyviewpager.It's good but doesn't have this effect. can anybody tell me how can i achieve this effect for showing images.

Manoj
  • 2,799
  • 5
  • 30
  • 49
  • this link will have the tutorial for 3d Android carousel http://www.codeproject.com/Articles/146145/Android-3D-Carousel – user2417696 Feb 27 '14 at 11:57

1 Answers1

2

You can extend the gallery view class, use setStaticTransformationsEnabled(true) and handle item transformations by yourself in getChildStaticTransformation .

EDIT: One way to do achieve this goal, is available in as a sample in a 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 modify further on. The important aspect is to learn how to use getChildStaticTransformation .

radhoo
  • 2,877
  • 26
  • 27