JonSkeet 2013-06-17 02:34 采纳率: 0%
浏览 2251
已采纳

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 版本上不能运行,还有什么方法实现?

  • 写回答

1条回答 默认 最新

  • LiDaming_and 2013-06-17 05:54
    关注

    下面的代码显示一个 IntentService 下载一个文件然后使用 NotificationCompat.Builder 显示一个Notification。

    NotificationManager mgr = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    mgr.notify(NOTIFY_ID, b.build());
    

    这段代码在 Android 2.2 上可以运行,我在模拟器上运行了可以显示预期的 Notification。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 (标签-STM32|关键词-智能小车)
  • ¥20 关于#stm32#的问题,请各位专家解答!
  • ¥15 (标签-python)
  • ¥20 搭建awx,试了很多版本都有错
  • ¥15 java corba的客户端该如何指定使用本地某个固定IP去连接服务端?
  • ¥15 activiti工作流问题,求解答
  • ¥15 有人写过RPA后台管理系统么?
  • ¥15 Bioage计算生物学年龄
  • ¥20 如何将FPGA Alveo U50恢复原来出厂设置哇?
  • ¥50 cocos2d-x lua 在mac上接入lua protobuf?