Created
March 30, 2020 20:04
-
-
Save ImaginativeShohag/aa4ae7298b88a72289e817fd1e8cc3e0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Kotlin | |
val carousel: ImageCarousel = findViewById(R.id.carousel) | |
val list = mutableListOf<CarouselItem>() | |
list.add( | |
CarouselItem( | |
imageUrl = "https://images.unsplash.com/photo-1532581291347-9c39cf10a73c?w=1080", | |
caption = "Photo by Aaron Wu on Unsplash" | |
) | |
) | |
list.add( | |
CarouselItem( | |
imageUrl = "https://images.unsplash.com/photo-1534447677768-be436bb09401?w=1080", | |
caption = "Photo by Johannes Plenio on Unsplash" | |
) | |
) | |
// ... | |
carousel.addData(list) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment