问题描述
- android:在 status bar 上添加 notification
-
我使用 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 版本上不能运行,还有什么方法实现?
解决方案
下面的代码显示一个 IntentService 下载一个文件然后使用 NotificationCompat.Builder 显示一个Notification。
NotificationManager mgr = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
mgr.notify(NOTIFY_ID, b.build());
这段代码在 Android 2.2 上可以运行,我在模拟器上运行了可以显示预期的 Notification。
时间: 2024-12-10 03:06:33