[Solved] what is this image gallery called in android [closed]

Its called Carousel See this: carousel layout android If you want 3 D Carousel, you can see this post You would need to create a custom class for your images, which extends ImageView. EXAMPLE: public class CarouselImageView extends ImageView implements Comparable<carouselimageview> { private int index; private float currentAngle; private float x; private float y; private … Read more