通知多行

时间:2013-11-06 07:46:48

标签: android notifications

如何制作长通知多行。我使用下面的代码片段,但它不起作用:

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context)
  .setContentTitle(title)
  .setSmallIcon(R.drawable.icon)
  .setStyle(new NotificationCompat.BigTextStyle().bigText(message))
  .setContentText(message)
  .setContentIntent(pIntent);

return mBuilder.build();

5 个答案:

答案 0 :(得分:94)

添加:

NotificationCompat.Builder builder = new NotificationCompat.Builder(
            context);
    Notification notification = builder.setContentIntent(contentIntent)
            .setSmallIcon(icon).setTicker(appname).setWhen(0)
            .setAutoCancel(true).setContentTitle(appname)
            .setStyle(new NotificationCompat.BigTextStyle().bigText(message))
            .setContentText(message).build();

    notificationManager.notify(0, notification);

同时检查:Multiline Notification

答案 1 :(得分:10)

Bitmap icon1 = BitmapFactory.decodeResource(getResources(),R.drawable.ic_launcher);  
    NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
            .setSmallIcon(getNotificationIcon()).setLargeIcon(icon1)
            .setTicker(title)
            .setContentTitle(title)
            .setContentText(message)
            .setAutoCancel(true)
            .setTicker(message)
            .setStyle(new NotificationCompat.BigTextStyle().bigText(title))
            .setStyle(new NotificationCompat.BigTextStyle().bigText(message))
            .setPriority(Notification.PRIORITY_MAX)
            .setContentIntent(pIntent)
            .setContent(remoteViews)
             .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
            .setVibrate(new long[] {1, 1, 1})
             .setLargeIcon(BitmapFactory.decodeResource(this.getResources(), R.drawable.ic_launcher))
            .setDefaults(Notification.DEFAULT_SOUND)
            .setDefaults(Notification.DEFAULT_ALL);
    NotificationManager notificationmanager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    Notification notify = new Notification();
    notify.flags = Notification.FLAG_SHOW_LIGHTS | Notification.FLAG_ONLY_ALERT_ONCE;
    Random random = new Random();
    notificationmanager.notify(random.nextInt(), builder.build());

答案 2 :(得分:4)

尝试使用Android Oreo通知通道ID处理此代码。

public static int id = 0;
private void sendNotification(String messageBody) {

    Log.d("FCMID","id : " + id);
    Intent intent = new Intent(this, Main2Activity.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 , intent,PendingIntent.FLAG_ONE_SHOT);

    String channelId = "1";
    Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    NotificationCompat.Builder notificationBuilder =
            new NotificationCompat.Builder(this, channelId)
            .setSmallIcon(R.drawable.ic_notification)
            .setStyle(new NotificationCompat.BigTextStyle().bigText(messageBody))
            .setContentTitle("Piml Sid")
            .setContentText(messageBody)
            .setAutoCancel(true)
            .setSound(defaultSoundUri)
            .setContentIntent(pendingIntent);

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

    // Since android Oreo notification channel is needed.
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        NotificationChannel channel = new NotificationChannel(channelId,
                "Spike Bot",
                NotificationManager.IMPORTANCE_DEFAULT);
        notificationManager.createNotificationChannel(channel);
    }
    id ++;
   notificationManager.notify(id /* ID of notification */, notificationBuilder.build());
}

答案 3 :(得分:1)

在您的datas = [{"_id":"1234as","Totalstudents":"123,321","TotalPresent":"321,345"}, {"_id":"1234asas","TotalStudents":"343,431","TotalPresent":"541,656"}, {"_id":"9934 asas","TotalStudents":"NA","TotalPresent":""}] 中添加

NotificationCompat.Builder

.setStyle(NotificationCompat.BigTextStyle().bigText(body)) .setContentText(body) 的alnog

答案 4 :(得分:-1)

Notification notification = new Notification.Builder(context)
         .setContentTitle(title)  
         .setSmallIcon(icon) 
         .setStyle(new Notification.BigTextStyle().bigText(notificationMessage))
         .setAutoCancel(true)
         .setContentIntent(intent)
         .build();