Here is a one-liner solution that works for as low as minSdkVersion 14
which you should insert in you res/styles.xml
:
<item name="android:windowAnimationStyle">@null</item>
like so:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
...
<item name="android:windowAnimationStyle">@null</item>
</style>
...
</resources>
Cheers!