gpt4 book ai didi

android - 如何使用 Cordova 显示状态栏通知 - Android 和 IOS

转载 作者:搜寻专家 更新时间:2023-11-01 09:39:35 24 4
gpt4 key购买 nike

我通读了许多关于状态栏通知的博客和 Stackoverflow 线程,并且大多数博客都使用插件 https://github.com/phonegap/phonegap-plugins/tree/master/Android/StatusBarNotification

但这会产生 404 错误。我没有找到任何其他有效的插件来执行此操作。

我需要让下面的代码工作。我需要使用什么插件?

window.plugins.statusBarNotification.notify("Notification", "Registered with Server");

谢谢

最佳答案

我使用以下插件和代码 fragment 解决了我的问题。

de.appplant.cordova.plugin.local-notification

cordova.plugins.notification.local.schedule({
id: 1,
title: "Production Jour fixe",
text: "Duration 1h",
firstAt: monday_9_am,
every: "week",
sound: "file://sounds/reminder.mp3",
icon: "http://icons.com/?cal_id=1",
data: { meetingId:"123#fg8" }
});

cordova.plugins.notification.local.on("click", function (notification) {
joinMeeting(notification.data.meetingId);
});

谢谢。

关于android - 如何使用 Cordova 显示状态栏通知 - Android 和 IOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40606071/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com