Android Launch An Activity From A Broadcast Receiver
Solution 1:
This is related to the problem I answered in a previous question here: Activity started from notification opened on top of the activity stack
Basically it's all about: android:taskAffinity
and android:launchMode
Solution 2:
You've asked this same question like 3 times now and we still don't have nearly enough information. You keep mentioning the "original activity" but we have no idea what that is, how you started it, or where it went such that it "comes back".
Your probably is you're probably not finishing your "main" activity, or that you have weird flags, or it's listening for the same intent.
You also don't show us anything about your broadcast receiver.
Solution 3:
Dont use android:theme="@android:style/Theme.Translucent.NoTitleBar" leave the android:theme as the default.This works for me
Post a Comment for "Android Launch An Activity From A Broadcast Receiver"