I have an activity attribute defined in the manifest as :
ActivityA, android:launchMode,singleTask
If I send ActivityA an intent the first time
Activity.GetStartingIntent returns the intent
then call ActivityA.finish
later on I send another intent to ActivityA
Activity.GetStartingIntent returns the original intent not the new intent.
According to the docs, android:launchMode singleTask routes the intent to existing instance through a call to its onNewIntent() method, rather than creating a new one. But GetStartingIntent is not returning it?
ActivityA, android:launchMode,singleTask
If I send ActivityA an intent the first time
Activity.GetStartingIntent returns the intent
then call ActivityA.finish
later on I send another intent to ActivityA
Activity.GetStartingIntent returns the original intent not the new intent.
According to the docs, android:launchMode singleTask routes the intent to existing instance through a call to its onNewIntent() method, rather than creating a new one. But GetStartingIntent is not returning it?