Reputation: 21
i want to sent data from one applications to another android application, i am new to this android so please help me...
Upvotes: 2
Views: 861
Reputation: 830
This is pretty old thread but i'll still put this info which might help someone facing the similar issue.
Cheers..!
Upvotes: 1
Reputation: 16
For inter thread communicaton(between activity and service/other activity) use intents or handler. But for inter process communication(between 2 different application) use aidl.
Upvotes: 0
Reputation: 9140
While Intents are a good way of doing them, if you want to pass a lot of data across I suggest you look at IPC services. These allow you to open up a communication channel between the two processes and talk. In intents whatever you want to send to an app gets sent to all the apps wanting to listen to that intent, so keep that in mind.
Upvotes: 1
Reputation: 77722
Look up intents. That's the preferred way to do it.
Apps can support any number of intents, and you can pass any data along with the intent.
Upvotes: 1