具有多文本更新的Android ICS通知?

时间:2014-02-07 18:35:48

标签: android notifications

旨在尝试使用多文本或多行发送通知我已成功完成此步骤 但是,当我试图更新通知文本时,它不会更新

我如何更新通知文字?

这是我的代码

Intent intent         = new Intent(this, text.class);
PendingIntent pIntent = PendingIntent.getActivity(this, 0, intent, 0);

Notification n  = new Notification.Builder(this)
        .setContentTitle(foruminfo.forum_title)
        .setContentText(text)
        .setSmallIcon(R.drawable.add_replay)
        .setContentIntent(pIntent)
        .setStyle(new Notification.BigTextStyle().bigText(text)) 
        .setAutoCancel(true).build();

        NotificationManager notificationManager =  (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

        notificationManager.notify(123123, n);

我是android的新手我在函数内使用上面的代码和text内容多行

任何建议?谢谢你

1 个答案:

答案 0 :(得分:0)

你可以看到它。

Android multiline notifications / notifications with longer text

此链接有助于在ICS或更早版本中通知多行。