0

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.

Matster
  • 31
  • 1
  • 2
  • You can use [BroadcastReceiver](http://developer.android.com/reference/android/content/BroadcastReceiver.html). –  Feb 04 '13 at 08:40
  • 1
    possible duplicate: http://stackoverflow.com/questions/11353195/passing-string-data-between-android-applications – eeadev Feb 04 '13 at 08:43
  • i think content provider to this task or u can achieve this task through using content provider. – duggu Feb 04 '13 at 08:45

1 Answers1

0

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

Community
  • 1
  • 1
Alfergon
  • 5,463
  • 6
  • 36
  • 56