tags:

views:

37

answers:

1

i want to send input data in one application to the other application using "intent" or can we store user input from one application that can be used by other application.

+2  A: 

You'll need to set up a Content Provider: http://developer.android.com/guide/topics/providers/content-providers.html

RoToRa