Send String To Another Android Application
How can I pass a String between applications? The String is some field that is known in the sender app and is needed by the receiver app. Both applications are on the same Device.
Solution 1:
You can do it with intents passing the string value in the URL, specifically: http://developer.android.com/training/sharing/send.html.
Gotten from: Passing String data between Android applications
Post a Comment for "Send String To Another Android Application"