我想实现ShortcutBadge,在我的应用图标上显示推送通知的计数器。 来自:https://github.com/leolin310148/ShortcutBadger
我已成功添加了库。 我的应用程序有GcmMessageListenerService.java类。
及以下方法。
onMessageReceived()
showNotification()
我想这样使用:
$(".winner-container").on("mouseenter", function() {
$(this).children(".top").addClass('top-up');
$(this).children(".bottom").addClass('bottom-up');
});
$(".winner-container").on("mouseleave", function() {
$(this).children(".top").removeClass('top-up');
$(this).children(".bottom").removeClass('bottom-up');
});
但是当我在GcmMessageListenerService.java上的任何方法上粘贴上面的代码时,它无法工作。 谢谢你的帮助。