Manju
Manju

Reputation: 742

android carousel like gallery

Hi i want to display Caoursel like Gallery almost CarouselView in IPhone with rotatory property i find two projects from google which consists of render script

this and this

but my requirement is something like this. I dont want to show the back view but it should be in 3d format. I tried hard but no luck.enter image description here

I tried to customize above projects but no luck for me.

Any help will be appreciated Thanks in advance

Upvotes: 2

Views: 2797

Answers (1)

Dheeresh Singh
Dheeresh Singh

Reputation: 15701

Please refer this link and you need to make some modification

  /**
     * The maximum angle the Child ImageView will be rotated by
     */    
    private int mMaxRotationAngle = 60;<------------here 

    /**
     * The maximum zoom on the centre Child
     */
    private int mMaxZoom = -120;<------------here 

as per your requirment

Android Coverflow Widget

I changed these two variable and it was looking as below

![enter image description here][3]

Upvotes: 2

Related Questions