views:

33

answers:

1

I have a ContentProvider which is declared in the Manifest, when is it really created ? When the application is launched but before launching the first activity ? When the first query/update/insert is done ? When ?

+1  A: 

When the first query/update/insert is done. Check this

Tushar Tarkas