phonegap android localnotification 插件不显示任何内容
Posted
技术标签:
【中文标题】phonegap android localnotification 插件不显示任何内容【英文标题】:phonegap android localnotification plugin display nothing 【发布时间】:2013-05-07 11:17:04 【问题描述】:我关注了这个:localnotification android phonegap for cordova 2.x+ 在设备中一无所获:这是我的 console.log 的一些结果:
05-07 21:04:20.218: E/dalvikvm(21039): threadid=5: stuck on threadid=12, giving up
05-07 21:04:20.218: D/dalvikvm(21039): threadid=5: sending two SIGSTKFLTs to threadid=12 (tid=21062) to cause debuggerd dump
05-07 21:04:22.218: D/dalvikvm(21039): Sent, pausing to let debuggerd run
05-07 21:04:22.867: A/libc(21039): Fatal signal 16 (SIGSTKFLT) at 0x0000522f (code=-6)
这是html页面的代码,一切都来自上述链接
<script type="text/javascript">
document.addEventListener("deviceready",appReady, false);
function appReady()
window.plugins =
LocalNotificationPlugin: cordova.require( 'cordova/plugin/localNotification' )
;
console.log("Device ready");
alert("");
var now = new Date();
now.setSeconds(now.getSeconds() + 90);
window.plugins.LocalNotificationPlugin.add(
date :now,
message : "Phonegap - Local Notification\r\nSubtitle comes after linebreak",
ticker : "This is a sample ticker text",
repeatDaily : false,
id : 4
);
</script
【问题讨论】:
你能把你的代码也给我们看看吗? 已经提到了代码 见***.com/questions/17198707/…。如果没有帮助,请告诉我 【参考方案1】:查看https://github.com/Wizcorp/phonegap-plugin-localNotifications
Wizcorp 定期维护并用于制作游戏。
【讨论】:
以上是关于phonegap android localnotification 插件不显示任何内容的主要内容,如果未能解决你的问题,请参考以下文章
使用 Phonegap 创建 Android 服务? (即使关闭也可以运行phonegap应用程序)