[TUTORIAL] Inter-app Communication with Intents say:
I need to do this in a service to retrieve putextra and I do not want to load the activity. Is it possible? How?5. Code the Requester to accept the data
Again this code is very similar to the Provider except that it gets the data:
B4X:Sub Activity_Resume Dim in as Intent in = Activity.GetStartingIntent If in <> null Then If In.HasExtra("Settings") Then AcceptSettings 'Do something here with your settings End If End If End Sub