Reputation: 785
Hi im going through Content Providers in Android.Im unable to get a exact code example.i googled it i couldnt find the easy and understandable code.please help me by providing some links thanks in advance
Upvotes: 0
Views: 41
Reputation: 10969
A ContentProvider can be used internally in an application to access data. If the data should be shared with another application a ContentProvider allows this.
Android Tutorial: Writing your own Content provider
Upvotes: 0
Reputation: 1411
In this place you have all the information that you need about Content Providers: http://developer.android.com/guide/topics/providers/content-providers.html
Upvotes: 0