0

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?

BadCode
  • 259
  • 3
  • 12

1 Answers1

0

The method overridePendingTransition() and animation parameters R.animator.fade_in, R.animator.fade_out have worked for some.

It is described here

Jantzilla
  • 638
  • 1
  • 7
  • 19
  • This approach is bypassing the transition api wand thus will not let me use any methods like explode, etc. – BadCode Jun 01 '18 at 22:01