Android 中的 Phonegap ActivityStart 未显示我通过的消息

发布于 2024-12-27 01:45:59 字数 254 浏览 0 评论 0原文

在我的项目中,我使用了 navigator.notification.activitystart("Title","Message")。

但它只是将标题显示为“忙碌”,消息显示为“请稍候”。我可以使用 navigator.notification.activityStop() 停止活动

所以我想问 ActivityStart 是否真的在 Android 手机上显示标题和消息。

我正在使用phonegap1.1.0

提前感谢大家

In my project I used navigator.notification.activitystart("Title","Message").

But it is just showing the title as "Busy" and message as "Please wait". I can stop the activity with navigator.notification.activityStop()

So i want to ask does the activityStart really shows the title and message on android phones.

I am using phonegap1.1.0

Thanks all in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

会发光的星星闪亮亮i 2025-01-03 01:45:59

来自phonegap-1.1.0.js 和phonegap-1.3.0.js:

Notification.prototype.activityStart = function() {
    PhoneGap.exec(null, null, "Notification", "activityStart", ["Busy","Please wait..."]);
};

请注意,activityStart 不带参数,因此您必须修改它才能真正接受您的参数。

From both phonegap-1.1.0.js and phonegap-1.3.0.js:

Notification.prototype.activityStart = function() {
    PhoneGap.exec(null, null, "Notification", "activityStart", ["Busy","Please wait..."]);
};

Note that activityStart takes no parameters, so you'd have to modify it to actually accept your parameters.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文