Wie kann ich Dashboard-Benachrichtigungen in meiner Palm-Pre-Anwendung erhalten?Palm Pre Dashboard-Benachrichtigung
0
A
Antwort
4
Eine Dashboard-Benachrichtigung ist nur eine weitere Ansicht in der Anwendung. Dashboard-Bedienfelder werden in der Mojo SDK-Dokumentation unter http://developer.palm.com/index.php?option=com_content&view=article&id=1632 behandelt.
0
Anruf this.notify() und erklärt notify() wie folgt
YourAssistant.prototype.notify = function(custom,event) {
console.log("################# NOTIFY ############")
var target = custom;
var appController = Mojo.Controller.getAppController();
this.controller.commitChanges();
var bannerParams = {
soundClass: '',
soundFile: '',
icon: '',
messageText: 'hahaha hahaha'
}
appController.showBanner(bannerParams, {banner: this.message});
}
ein dickes Lob für solch eine klare, detaillierte Frage zu stellen. Ich bin sicher, dass es vielleicht nützliche Antworten bekommen wird .... oder NICHT ... –