Android App Calls Main/launcher Again, Instead Of Onresume()
when my android app - Activity B - is moved to the background (by the user pressing the android home button), it is still alive, onStop() was called as expected. Activity B has n
Solution 1:
Use android:launchMode="singleTask"
in your manifeast file where you declare activity b. Then activity b not display in background.
Post a Comment for "Android App Calls Main/launcher Again, Instead Of Onresume()"