Add below attribute in your app then replace your own color :
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@color/colorBackground</item>
</style>
Below code effects to Activity Components if you use any overridePendingTransition(),it creates issue in transition while Activity changing it seems misbehaviour.So, don't use this code for prevent black background.
android:theme="@android:style/Theme.Translucent"
OR
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowIsTranslucent">true</item>
</style>
android:duration
should be equal to or greater than the duration of your animation of the entering activity. – Empanel