Android - 向状态栏发布通知?

时间:2013-11-09 03:03:44

标签: android notifications notificationmanager

我试图在没有任何意图的情况下向状态栏发布通知,但什么都没发生? 我错过了什么吗?此代码位于我的推送通知接收器服务中。

notificationManager = (NotificationManager)
        this.getSystemService(Context.NOTIFICATION_SERVICE);

    NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
    builder.setContentTitle("Hello");
    builder.setContentTitle("This is my message");
    builder.setSmallIcon(R.drawable.ic_launcher);

    PendingIntent intent = PendingIntent.getActivity(this, 0, new Intent(), PendingIntent.FLAG_UPDATE_CURRENT);
    builder.setFullScreenIntent(intent, true);

    notificationManager.notify(555, builder.build());

1 个答案:

答案 0 :(得分:3)

如我的评论中所述,要为通知管理器创建通知,还必须提供small icon

此外,对于定位Android 2.2和2.3的开发人员,请确保包含内容Intent,否则应用会崩溃。