I just now started using the SplashScreen api. I have removed my old SplashActivity and I am calling installSplashScreen() within MainActivity before setContentView.
The problem is when I was using SplashActivity (the old method), I had the chance to make a choice to open the next activity. However, with this new SplashScreen api, I couldn't think of any ways to have the same thing. I am already inside the MainActivity when the app is open.
The thing is I don't always open MainActivity after Splash, I have another activity too that needs to be opened first occasionally right after Splash.
How could I do that? Could someone point me in the right direction?