hi all,
I have a sensitive activity.
I want to write a service that, after 10 seconds when the user was out of the app, opens an activity from the Recent app. The problem is that I do not want the activity to start again, which means:
I want to write code that opens the application in Activity_Resume (not Activity_Create)
Because there is some information inside the activity that will be deleted if it is run again.
what should i do?
I have a sensitive activity.
I want to write a service that, after 10 seconds when the user was out of the app, opens an activity from the Recent app. The problem is that I do not want the activity to start again, which means:
B4X:
StartActivity(My_Activity) ' i don't want
Because there is some information inside the activity that will be deleted if it is run again.
what should i do?