Please, I'd like to know how to create an window like this, but with something written or a loading indicator with phonegap:
http://img805.imageshack.us/img805/8799/datepickerdialog411.png
I'm using cordova 2.5 and I've found some plugins, but it didn't work and the alert of phonegap is ugly and dark.
Plugins I've found: - https://github.com/phonegap/phonegap-plugins/tree/master/Android/WaitingDialog - https: //gist.github.com/ChrisMcKee/1336815
Thank you!!
You can customize your alert either using JavaScript
or by developing a PhoneGap
Plugin.
Using JavaScript
Use something like this : Simple Model or Shadobox
Using PhoneGap
Plugin
Use PhoneGap Development Guide to develop your own plugin for Alert Dialog and call that. Here you can use same Jelly Bean Style
for your Custom Alert Dialog.
Thanks.