我的程序正在从服务调用此代码以显示通知:
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this).setSmallIcon(icon)
.setContentTitle("BU").setOngoing(true).setContentText("BU is the biggest!!!");
mNM.notify(mNotificationId, mBuilder.build());
它正在使用具有 4.1+ 版本的 Galaxy S-III,但它无法正常工作,也不会在 android v2.3.6 上出现错误。
我已经阅读了 api,但我可能会错过一些东西。有什么问题,我该如何解决?
提前致谢...