我用 NotificationCompat.Builder 构建了一个通知并显示它我需要通知 NotificationManager 新的通知,所以我打电话
NotificationManager mNotifyMgr = (NotificationManager) cont.getSystemService(Context.NOTIFICATION_SERVICE);
mNotifyMgr.notify(SOME_INT_NUMBER, builder.build());
但是eclipse将“notif(..)”标记为带有标题的错误:
Object 类型中的方法 notify() 不适用于参数 (int, Notification)
而且我很确定 notif(int, Notification) 存在:http: //developer.android.com/reference/android/app/NotificationManager.html
有人可以解释我做错了什么吗?
编辑:我还发现我无法导入 android.app.NotificationManager,因为:
导入 android.app.NotificationManager 与同一文件中定义的类型冲突