I have created a Android app using phone Gap.It works fine.How I add a pre-loader image to My App.Now it show a white page while loading the application.
Help is hig
You could create an AsyncTask implementation for showing an image / progress indicator while your application's data is loading in the background thread.
onPreExecute
method you show the chosen preloader
(image / ProgressDialog / etc)doInBackground method you
start loading the necessary data,
andonPostExecute method you
remove/hide your preloader, so the
activity's desired layout will be
shown.