我使用 NotificationCompat.Builder 创建了一个 notification,但是不知道如何在 status bar 中显示出来?
我使用代码:
NotificationManager notificationManager = (NotificationManager)
getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(mId, mBuilder.build());
notification:
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.notification)
.setContentTitle("Message")
.setContentText("Notification");
但是在 2.2 版本上不能运行,还有什么方法实现?