2

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

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());
4

1 回答 1

3

正如我在评论中提到的,要为通知管理器创建通知,还必须提供一个小图标。

此外,对于同时针对 Android 2.2 和 2.3 的开发人员,请确保包含内容 Intent,否则应用程序将崩溃。

于 2013-11-09T03:36:03.237 回答