我无法让 Android 的大文本通知按照此处记录的方式工作:NotificationCompat.BigTextStyle。这是我用来显示通知的代码。我知道所有数据都正确返回,因为我可以将其显示在控制台上并作为传统内容文本和标题显示。难道我做错了什么?我还需要在其他地方定义 bigTestStyle 吗?希望你们中的一个人以前做过,并且知道可能缺少什么。谢谢。
我的代码:
NotificationCompat.BigTextStyle bigTextStyle = new NotificationCompat.BigTextStyle();
bigTextStyle.bigText(extras.getString("message"));
NotificationCompat.Builder bigTextNotification = new NotificationCompat.Builder(context)
.setContentTitle("My App")
.setContentIntent(pendingIntent)
.setContentText("Message:")
.setSound(soundUri)
.setTicker(extras.getString("message"))
.setWhen(System.currentTimeMillis())
.setSmallIcon(R.drawable.splash)
.setAutoCancel(true)
.setVibrate(new long[] { 0, 100, 200, 300 })
.setStyle(bigTextStyle);
final int notificationId = (int) (System.currentTimeMillis() / 1000L);
NotificationManager thisone = (NotificationManager) getApplicationContext()
.getSystemService(Context.NOTIFICATION_SERVICE);
thisone.notify(notificationId, bigTextNotification.build());