In a Xamarin.Android App, I need to display a splash screen image that comes from a http remote server.
So, I need to execute some code (WebClient...) before the MainLauncher Activity is displayed (My MainLauncher activity is basically a ImageView and a ProgressBar).
If I add my WebClient code in MainLauncher activity's OnCreate, then during the download a black screen is displayed. So I would like to execute my WebClient code BEFORE the mainlauncher is displayed.
Or any kind of trick would be OK!
Hope it is clear...