我已经使用NotificationCompat.Builder创建了一个通知,但我不知道如何在状态栏中显示它。我尝试使用
NotificationManager notificationManager = (NotificationManager)
getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(mId, mBuilder.build());
但它在 2.2 上不起作用,所以我需要另一种方法......
这是我的通知
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.notification)
.setContentTitle("Message")
.setContentText("Notification");