我的 Android 应用程序必须能够向一大群人发送简短的警报。显而易见的地方是在通知中心。完整的通知毫无问题地显示在代码中,但在通知中心,用户只能看到前几个单词,然后是省略号。通知一点也不长,最多只有10-15个字。如何使文本换行到新行?
我构建通知的代码在这里
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.splash)
.setContentTitle("Student Engauge")
.setContentText(extras.getString("message"))
.setAutoCancel(true)
.setTicker(extras.getString("message"));
final int notificationId = 1;
NotificationManager nm = (NotificationManager) getApplicationContext()
.getSystemService(Context.NOTIFICATION_SERVICE);
nm.notify(notificationId, mBuilder.build());