android_novice
android_novice

Reputation: 149

How to use data of one application into other application in Android

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.

Upvotes: 1

Views: 165

Answers (1)

RoToRa
RoToRa

Reputation: 38400

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

Upvotes: 2

Related Questions