mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-20 16:22:53 +08:00
1d79b6617b
I did my best to clean up the JavaScript so it would pass through jsHint more cleanly. There still are issues but there are a lot fewer now. This helped to make the JS code more consistent.
95 lines
3.1 KiB
JavaScript
Executable File
95 lines
3.1 KiB
JavaScript
Executable File
/*
|
|
* PhoneGap is available under *either* the terms of the modified BSD license *or* the
|
|
* MIT License (2008). See http://opensource.org/licenses/alphabetical for full text.
|
|
*
|
|
* Copyright (c) 2005-2010, Nitobi Software Inc.
|
|
* Copyright (c) 2010-2011, IBM Corporation
|
|
*/
|
|
|
|
if (!PhoneGap.hasResource("app")) {
|
|
PhoneGap.addResource("app");
|
|
|
|
/**
|
|
* Constructor
|
|
* @constructor
|
|
*/
|
|
var App = function() {};
|
|
|
|
/**
|
|
* Clear the resource cache.
|
|
*/
|
|
App.prototype.clearCache = function() {
|
|
PhoneGap.exec(null, null, "App", "clearCache", []);
|
|
};
|
|
|
|
/**
|
|
* Load the url into the webview.
|
|
*
|
|
* @param url The URL to load
|
|
* @param props Properties that can be passed in to the activity:
|
|
* wait: int => wait msec before loading URL
|
|
* loadingDialog: "Title,Message" => display a native loading dialog
|
|
* hideLoadingDialogOnPage: boolean => hide loadingDialog when page loaded instead of when deviceready event occurs.
|
|
* loadInWebView: boolean => cause all links on web page to be loaded into existing web view, instead of being loaded into new browser.
|
|
* loadUrlTimeoutValue: int => time in msec to wait before triggering a timeout error
|
|
* errorUrl: URL => URL to load if there's an error loading specified URL with loadUrl(). Should be a local URL such as file:///android_asset/www/error.html");
|
|
* keepRunning: boolean => enable app to keep running in background
|
|
*
|
|
* Example:
|
|
* App app = new App();
|
|
* app.loadUrl("http://server/myapp/index.html", {wait:2000, loadingDialog:"Wait,Loading App", loadUrlTimeoutValue: 60000});
|
|
*/
|
|
App.prototype.loadUrl = function(url, props) {
|
|
PhoneGap.exec(null, null, "App", "loadUrl", [url, props]);
|
|
};
|
|
|
|
/**
|
|
* Cancel loadUrl that is waiting to be loaded.
|
|
*/
|
|
App.prototype.cancelLoadUrl = function() {
|
|
PhoneGap.exec(null, null, "App", "cancelLoadUrl", []);
|
|
};
|
|
|
|
/**
|
|
* Clear web history in this web view.
|
|
* Instead of BACK button loading the previous web page, it will exit the app.
|
|
*/
|
|
App.prototype.clearHistory = function() {
|
|
PhoneGap.exec(null, null, "App", "clearHistory", []);
|
|
};
|
|
|
|
/**
|
|
* Add a class that implements a service.
|
|
*
|
|
* @param serviceType
|
|
* @param className
|
|
*/
|
|
App.prototype.addService = function(serviceType, className) {
|
|
PhoneGap.exec(null, null, "App", "addService", [serviceType, className]);
|
|
};
|
|
|
|
/**
|
|
* Override the default behavior of the Android back button.
|
|
* If overridden, when the back button is pressed, the "backKeyDown" JavaScript event will be fired.
|
|
*
|
|
* Note: The user should not have to call this method. Instead, when the user
|
|
* registers for the "backbutton" event, this is automatically done.
|
|
*
|
|
* @param override T=override, F=cancel override
|
|
*/
|
|
App.prototype.overrideBackbutton = function(override) {
|
|
PhoneGap.exec(null, null, "App", "overrideBackbutton", [override]);
|
|
};
|
|
|
|
/**
|
|
* Exit and terminate the application.
|
|
*/
|
|
App.prototype.exitApp = function() {
|
|
return PhoneGap.exec(null, null, "App", "exitApp", []);
|
|
};
|
|
|
|
PhoneGap.addConstructor(function() {
|
|
navigator.app = window.app = new App();
|
|
});
|
|
}
|