3
   Notification noti = new Notification.Builder(context)
            .setContentTitle("TITLE").setContentInfo("INFO")
            .build();
notificationManager.notify(ID,noti);

我对来自谷歌页面的样本有疑问。而且我有异常 NoSuchMethodError 我不知道发生了什么所以我使用旧的不推荐使用的方法和通知 noti.setLatestEventInfo 但我确信还有另一种解决方案。有任何想法吗?

4

1 回答 1

11

Notification.Builder.build()是 API 级别 16。

在 4.0.4 中,您应该使用getNotification()

或者你最好使用NotificationCompat

于 2013-03-22T13:54:08.480 回答