bonjour,

voilà mon problème :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<application>
                 <activity>
                     <intent-filter>
                           <action android:name="android.intent.action.MAIN"/>
                           <category android:name="android.intent.category.LAUNCHER"/>
                     </intent-filter>
                     <intent-filter>
                           <action android:name="android.intent.action.VIEW"/>
                           <category android:name="android.intent.category.BROWSABLE"/>
                           <category android:name="android.intent.category.DEFAULT"/>
                           <data android:scheme="my_scheme"/>
                     </intent-filter>
                 </activity>
</application>
je lance mon application avec ma custom URL "my_scheme://arg1=val1", puis je ferme mon application.
quand je la relance avec le bouton "recent", il se comporte comme si je l'avais lancer avec ma custom URL "my_scheme://arg1=val1" et je récupère ma variable arg1

est-il possible d'empêcher ce comportement ?
merci de votre aide