Completely disable all opening application for an activity.
// Source: https://stackoverflow.com/a/11079475
// Add below code to styles.xml
<style name="noAnimTheme" parent="AppTheme.NoActionBar">
<item name="android:windowAnimationStyle">@null</item>
</style>
// Set below theme for Activity in Manifest
android:theme="@style/noAnimTheme"