我正在尝试向我的应用程序添加通知。
API 级别是 8,所以,我需要使用 NotificationCompat 而不是 Notification,不是吗?
这是我的代码:
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this);
但是,有一个错误,“不能作为一个类型解决”
错误在哪里