0

Is it impossible making animated splash screen without creating splash activity in android ?

1 Answers1

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:

Tutorial from android documentation

Tutorial from codepath

Android Guide for Fragments

Amin Rezaei
  • 376
  • 2
  • 11