(cordova)(inappbrowser)让用户知道您已准备好他们的页面

时间:2016-07-29 09:24:48

标签: javascript android jquery cordova inappbrowser

我使用cordova和InAppBrowser构建了一个应用程序。我试图展示一个"加载微调器"或者加载消息" (而不是在inappbrowser加载时有一个空白页面),我尝试这样做但它不起作用,这是我的app.js代码:



$(document).ready(function() {
	document.addEventListener("deviceready", onDeviceReady, false);
});

var ref;

function onDeviceReady() {		
     	
		    try {				
				ref = cordova.InAppBrowser.open('https://cordova.apache.org', '_blank', 'location=no');
				ref.addEventListener('loadstart', loadStartCallBack);
				ref.addEventListener("exit", onBackButton, false); 
			}
			catch(err) {
				alert("Plugin Error - " + err.message);
			}
			
			

		function onBackButton(e) {
			navigator.app.exitApp();
		}

		function loadStartCallBack() {

    $('#status-message').text("loading please wait ...");

}
}




这是我的index.html代码:



<!DOCTYPE html>

<html>
    <head>
        <meta name="format-detection" >
        <meta name="msapplication-tap-highlight" content="no">
        <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
        <title>InApp Browser</title>
       
    </head>
    <body>      
		 <script type="text/javascript">
        navigator.splashscreen.show();
        </script>
		<div id="status-message"></div>
        <script type="text/javascript" src="js/jquery.js"></script>	
		<script type="text/javascript" src="cordova.js"></script>
		<script type="text/javascript" src="js/app.js"></script>
    </body>
</html>
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:3)

loadstop callback应该为你做好准备。

请务必在browser.open方法中添加属性 hidden = yes 作为第三个参数,否则浏览器将始终可见,您将无法看到加载消息:< / p>

cordova.InAppBrowser.open('https://cordova.apache.org', '_blank', 'location=no,hidden=yes');

最后,您的代码应如下所示:

<script>
var ref;

function onDeviceReady() {
    try {
        ref = cordova.InAppBrowser.open('https://cordova.apache.org', '_blank', 'location=no,hidden=yes');
        ref.addEventListener('loadstart', loadStartCallBack);
        ref.addEventListener("loadstop", loadEndCallback, false);
        ref.addEventListener("exit", onBackButton, false);
    } catch (err) {
        alert("Plugin Error - " + err.message);
    }

    function onBackButton(e) {
        navigator.app.exitApp();
    }

    function loadStartCallBack() {
        $('#status-message').text("loading please wait ...");
    }

    function loadEndCallback(){
        alert("Your page has been loaded, showing ...");
        $('#status-message').text("");
        ref.show();
    }
}

document.addEventListener("deviceready", onDeviceReady, false);
</script>

你是否在Chrome中使用远程debbuging得到了另一个特定的错误?

答案 1 :(得分:1)

您无法显示加载消息,因为如果您打开Inappbrowser,您的应用会转到后台,那么div <div id="status-message"></div>将被隐藏。

 var Ref;
   Ref = window.open('http://www.example.com', '_blank', 'location=no,toolbar=no');
             Ref.addEventListener('loadstart', inAppBrowserbLoadStart);
             Ref.addEventListener('loadstop', inAppBrowserbLoadStop);
             Ref.addEventListener('loaderror', inAppBrowserbLoadError);
             Ref.addEventListener('exit', inAppBrowserbClose);


       function inAppBrowserbLoadStart(event) {

             navigator.notification.activityStart("Please Wait", "Its loading....");
             alert(event.type + ' - ' + event.url);

        }

        function inAppBrowserbLoadStop(event) {
             navigator.notification.activityStop();
             alert(event.type + ' - ' + event.url);

        }

        function inAppBrowserbLoadError(event) {
             navigator.notification.activityStop();
             alert(event.type + ' - ' + event.message);
        }

        function inAppBrowserbClose(event) {

             Ref.removeEventListener('loadstart', iabLoadStart);
             Ref.removeEventListener('loadstop', iabLoadStop);
             Ref.removeEventListener('loaderror', iabLoadError);
             Ref.removeEventListener('exit', iabClose);
        }