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
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.
private void Calculate3DPosition(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);
}