What technique might I use to wait for my ContentProvider to fill-up before I start a specific activity? I am using a SyncAdapter to load the ContentProvider.
Normally I don't want to block my UI. But my app is a data app and the data is coming from remote server; from there it is saved in my ContentProvider (sqlite db). So I show the user a SplashActivity. I want the content provider to load before I take the user to the MainActivity. How do I do that? Again, my app is SplashActivity -> MainActivity