I am attempting to launch a new Acivity using an intent on top of another activity. I have the android:launchMode set to singleTask because I only want a single instance of this to be going on. When I launch the activity, the underlying activity's lifecycle methods fire like this, in rapid succession:
onPause()
onResume()
onPause()
I've searched around quite a while without finding a solution. Has anyone seen anything similar?
I am launching the intent using startActivityForResult. Thanks for any help!