I have a splash screen activity which is supposed to launch a landing activity and finish itself. When I enable activity transitions, with a simple slide animation as both enter and exit animations, I see that the splash activity finishes before the landing activity slides up completely. This causes an intermediate phase when users see the Android launcher screen.
I tried using finishAfterTransition()
as suggested here, but no luck. Is this a bug in the support library? Or am I not supposed to use transitions on activities which may finish after launching a new activity?