Skip to content Skip to sidebar Skip to footer

How To Create Vertical Carousel In Android?

I want to implement vertical carousel in android.I have searched lot of things about it,Finally i found that horizontal carousel example here. Can any body know that how to convert

Solution 1:

If you want a vertical pager, try that library written by Jake Warthon. It's perfectly coded and completely up to date with Android SDK.

The best way to work with 3d is to work with renderscript. I won't be really helpful on that topic.

Solution 2:

This following code is used to display the carousel in vertical view. I just modified code in this url. http://www.codeproject.com/Articles/146145/Android-3D-Carousel .This is works fine for nexus-landscpape. And also i used this LINK to get view as vertical.

privatevoidCalculate3DPosition(CarouselItem child, int diameter,
            float angleOffset){
        angleOffset = angleOffset * (float) (Math.PI / 180.0f);
        float y = (float) (diameter / 2 * Math.sin(angleOffset)) + diameter / 2
                - child.getWidth() / 2;
        float z = diameter / 2 * (1.0f - (float) Math.cos(angleOffset));
        float x = (float) (-   diameter / 2 * Math.cos(angleOffset) * 0.5);
        child.setX(x + 250);
        child.setZ(z);
        child.setY(y - 150);
    }

Post a Comment for "How To Create Vertical Carousel In Android?"