旨在尝试使用多文本或多行发送通知我已成功完成此步骤 但是,当我试图更新通知文本时,它不会更新
我如何更新通知文字?
这是我的代码
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
内容多行
任何建议?谢谢你
答案 0 :(得分:0)