I am creating an intro screen which contain number of slides but not able to add explode transition effect in last screen. See the below link example:
https://cdn.dribbble.com/users/244395/screenshots/2525702/silvva_-android-gif.gif
I am creating an intro screen which contain number of slides but not able to add explode transition effect in last screen. See the below link example:
https://cdn.dribbble.com/users/244395/screenshots/2525702/silvva_-android-gif.gif
You need to create a ViewPager wich loads differents fragments (every fragment contains what you want to display, like your exemple)
Here a good example: https://stackoverflow.com/a/18413437/9388338
When you finally can display differents fragments in your viewPager then you can add a custom animation to you viewPager.
Like this: https://developer.android.com/training/animation/screen-slide.html
It could be what you want.