Android SDK: Contact ContentProvider Source Code

I am creating ContentProvider

and I am wondering how the Android Team is creating Contact ContentProvider

. But when I browse Android source code

(in the folder Android SDK\source

) I don't see anything to relate to my need. I just see that most of the relationships are: ContentProvider.java

(in folder Android SDK\sources\android-15\android\content

), but this is just a class for a custom assembly Content Provider

.

Who can point me which file please.

thank:)

+3


source to share


1 answer


You won't find this in the main sources because it is not the main package. You can find android.provider.contacts

classes here .



+7


source







All Articles