mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 23:42:53 +08:00
78 lines
2.0 KiB
JavaScript
78 lines
2.0 KiB
JavaScript
|
/**
|
||
|
* This class provides access to notifications on the device.
|
||
|
*/
|
||
|
function Notification() {
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Open a native alert dialog, with a customizable title and button text.
|
||
|
* @param {String} message Message to print in the body of the alert
|
||
|
* @param {String} [title="Alert"] Title of the alert dialog (default: Alert)
|
||
|
* @param {String} [buttonLabel="OK"] Label of the close button (default: OK)
|
||
|
*/
|
||
|
Notification.prototype.alert = function(message, title, buttonLabel) {
|
||
|
// Default is to use a browser alert; this will use "index.html" as the title though
|
||
|
alert(message);
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Start spinning the activity indicator on the statusbar
|
||
|
*/
|
||
|
Notification.prototype.activityStart = function() {
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Stop spinning the activity indicator on the statusbar, if it's currently spinning
|
||
|
*/
|
||
|
Notification.prototype.activityStop = function() {
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Causes the device to blink a status LED.
|
||
|
* @param {Integer} count The number of blinks.
|
||
|
* @param {String} colour The colour of the light.
|
||
|
*/
|
||
|
Notification.prototype.blink = function(count, colour) {
|
||
|
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Causes the device to vibrate.
|
||
|
* @param {Integer} mills The number of milliseconds to vibrate for.
|
||
|
*/
|
||
|
Notification.prototype.vibrate = function(mills) {
|
||
|
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Causes the device to beep.
|
||
|
* @param {Integer} count The number of beeps.
|
||
|
* @param {Integer} volume The volume of the beep.
|
||
|
*/
|
||
|
Notification.prototype.beep = function(count, volume) {
|
||
|
|
||
|
};
|
||
|
|
||
|
// TODO: of course on Blackberry and Android there notifications in the UI as well
|
||
|
|
||
|
PhoneGap.addConstructor(function() {
|
||
|
if (typeof navigator.notification == "undefined") navigator.notification = new Notification();
|
||
|
});
|
||
|
|
||
|
Notification.prototype.vibrate = function(mills)
|
||
|
{
|
||
|
DroidGap.vibrate(mills);
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* On the Android, we don't beep, we notify you with your
|
||
|
* notification! We shouldn't keep hammering on this, and should
|
||
|
* review what we want beep to do.
|
||
|
*/
|
||
|
|
||
|
Notification.prototype.beep = function(count, volume)
|
||
|
{
|
||
|
DroidGap.beep(count);
|
||
|
}
|