我从用户那里获取两个值(源,目的地),并在将地图从A加载到B时,我需要显示某种活动。我们有iOS活动指标。但是,当地图在后台加载时,如何在Phonegap中使用活动指示器?
我在想像
navigator.something.activityIndicatorStartRunning()
javascript method to load the map
navigator.something.activityIndicatorStopRunning()
这可以在Javascript中使用吗?
答案 0 :(得分:1)
purplecabbage有一个活动指示符插件here
答案 1 :(得分:0)
提供此功能的最新插件将是
network-activity by steve228uk
这可以通过
添加到cordovacordova plugin add https://github.com/steve228uk/network-activity.git
或通过
到PhoneGapphonegap plugin add https://github.com/steve228uk/network-activity.git
答案 2 :(得分:0)
This function is show custom loading indicator while load a page/JSON in phonegap
function loading() {
$("body").addClass('ui-disabled');
$.mobile.loading(
'show',
{
text : "uploading",
textVisible : true,
textonly : false,
html : "<span class='ui-bar ui-shadow ui-overlay-d ui-corner-all' style='background-color:transparent;'><div align='center'><img src='img/loader.gif' /><br/><h2 style='color:#000000; font-size:16px;text-transform:none;'>Loading...</h2></div></span>"
});
}