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 に答える