gpt4 book ai didi

android - 在 Phonegap InAppBrowser 中显示加载指示器

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:47:17 27 4
gpt4 key购买 nike

我正在尝试使用以下代码在加载页面时在 Phonegap InAppBrowser 中显示加载指示器:

    var ref;
ref = window.open('http://www.google.com', '_top', 'location=no');
ref.addEventListener('loadstart', function(event) {
//navigator.splashscreen.show();
navigator.notification.activityStart("", "loading");
});
ref.addEventListener('loadstop', function(event) {
//navigator.splashscreen.hide();
navigator.notification.activityStop();
});

它不显示指标。我认为 z-index 低于 InAppBrowser 的 z-index。

如果我使用启动画面而不是加载指示器,它会起作用。

最佳答案

您可以在隐藏模式下打开InAppBrowser,同时显示一个微调器,加载完成后隐藏微调器并显示InAppBrowser:

showSpinner() // implement by yourself
var popup = window.open(url, "_blank", "location=no,toolbar=no,hidden=yes");
popup.addEventListener("loadstop", function() {
popup.show();
hideSpinner(); // implement by yourself
});

关于android - 在 Phonegap InAppBrowser 中显示加载指示器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21281571/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com