NotificationCompat.Builder を使用して通知を作成し、それを表示するには、新しい通知について NotificationManager に通知する必要があるため、呼び出しています
NotificationManager mNotifyMgr = (NotificationManager) cont.getSystemService(Context.NOTIFICATION_SERVICE);
mNotifyMgr.notify(SOME_INT_NUMBER, builder.build());
しかし、Eclipseは「notif(..)」をキャプション付きのエラーとしてマークします:
Object 型のメソッド notify() は、引数 (int、通知) には適用されません。
そして、notif(int, Notification) が存在すると確信しています: http://developer.android.com/reference/android/app/NotificationManager.html
誰かが私が間違っていることを説明できますか?
編集:次の理由により、android.app.NotificationManager をインポートできないことも発見しました:
インポート android.app.NotificationManager は、同じファイルで定義されたタイプと競合します