Is it impossible making animated splash screen without creating splash activity in android ?
Asked
Active
Viewed 206 times
0
-
https://stackoverflow.com/questions/5486789/how-do-i-make-a-splash-screen – Satan Pandeya Apr 16 '20 at 16:02
1 Answers
0
Yes, you're not forced to create separated activities for dynamic content or pages. I suggest you to use fragments in your activity whenever your splash animation ended change the fragment and load your main content.
Also you can do it with putting a RelativeLayout as root of your MainActivity and two children in it one for splash and one for main content whenever splash finished hide it and make main content visible. I don't suggest this because it can get messy and first approach is clean and more standard.
Some links on Fragments:

Amin Rezaei
- 376
- 2
- 11