Search code examples
androidphonegap-plugins

Loader Plugin for Android


I'm new to this,

I need to implement loader in phonegap android app while ajax requesting data from server till success, I searched but i did't got good plugin, so please help me or provide link.


Solution

  • try this one waiting dialog plugin

       // To SHOW a modal waiting dialog
    window.plugins.waitingDialog.show("Your dialog text");
    
    // To HIDE the dialog
    window.plugins.waitingDialog.hide();