Intent – if activity is running, bring it to front, else start a new one (from notification)

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.

Leave a Comment