javascript - Phonegap navigator.notifications does nothing - Stack Overflow

Starting to play with phonegap for the android and am not able to get anything in the navigator.notific

Starting to play with phonegap for the android and am not able to get anything in the navigator.notifications to work (actually looks like navigator.<anything> is not working). In my JS I have tried

navigator.notification.vibrate(1000);
navigator.notification.vibrate();
navigator.notification.alert("one", "two", "three");
navigator.notification.beep(1);

none of them do anything, the app just continues right on past them like nothing ever happened. If I alert(navigator) I get [object object] but alert(navigator.notification) gives null.

Starting to play with phonegap for the android and am not able to get anything in the navigator.notifications to work (actually looks like navigator.<anything> is not working). In my JS I have tried

navigator.notification.vibrate(1000);
navigator.notification.vibrate();
navigator.notification.alert("one", "two", "three");
navigator.notification.beep(1);

none of them do anything, the app just continues right on past them like nothing ever happened. If I alert(navigator) I get [object object] but alert(navigator.notification) gives null.

Share Improve this question edited Sep 1, 2011 at 14:31 Lee Quarella asked Aug 31, 2011 at 22:20 Lee QuarellaLee Quarella 4,7425 gold badges44 silver badges68 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 4

PhoneGap for Android supports all three notification methods you mentioned. For me it looks like you try to run them before PhoneGap is ready (so before navigator.notification object is initialized). Make sure your code is not executed before PhoneGap notify deviceready event. Just for test you can try to run a code like this:

document.addEventListener("deviceready", function(){
   navigator.notification.vibrate(1000);
   navigator.notification.alert("Hello");
   navigator.notification.beep(1);   
}, false);

Please also notice that in your example there is a mistake in alert method invocation. The second parameter is a callback (executed after user press/taps button on alert), so you shouldn't pass a string there.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745623703a4636674.html

相关推荐

  • javascript - Phonegap navigator.notifications does nothing - Stack Overflow

    Starting to play with phonegap for the android and am not able to get anything in the navigator.notific

    9小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信