You can use this:
<activity
android:name=".YourActivity"
android:launchMode="singleTask"/>
which will work similar to "singleInstance"
but it won’t have that weird animation.
You can use this:
<activity
android:name=".YourActivity"
android:launchMode="singleTask"/>
which will work similar to "singleInstance"
but it won’t have that weird animation.