如何在我的 Palm-Pre 应用程序中获得仪表板通知?
user148867
问问题
474 次
2 回答
4
仪表板通知只是应用程序中的另一个视图。仪表板面板包含在http://developer.palm.com/index.php?option=com_content&view=article&id=1632上的 Mojo SDK 文档中。
于 2009-09-22T00:44:49.380 回答
0
调用 this.notify() 并声明 notify() 如下
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});
}
于 2011-05-30T07:03:51.493 回答