maanbhati
maanbhati

Reputation: 103

How to share data using Content Provider in Android

I am developing an application in which I want to share my application data with another using ContentProvider.

But not getting proper solution. Can any one help me? Is there any good tutorial regarding this?

Thanks in advance.

Upvotes: 2

Views: 6764

Answers (1)

taruna
taruna

Reputation: 61

Yes you need to create your content provider

here is the tutorial: http://mobile.tutsplus.com/tutorials/android/android-sdk_content-providers/

then to fetch the results from content provider, you need to create a class in another application that extends content resolver and call the query used in content provider.

Upvotes: 2

Related Questions