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