I have an issue with my SplashScreenActivity, when I start my application on my phone it shows a white screen for about 0,5 seconds. The MainActitivy
SplashScreenActivity
MainActitivy
You need to run this two actions in an AsyncTask:
setContentView(R.layout.splashscreen); randomSplash();
put the setContentView in the doInBackground-method and in the postExecute method you run randomSplash.
setContentView
randomSplash