我尝试了多种方式来获得长 xt 样式的通知,但无法达到我的目标,请有人帮忙。
我想使用 bigTextStyle 在我的通知中获取多行消息。这是我的代码:
mNotificationManager = (NotificationManager) ctx.getSystemService(Context.NOTIFICATION_SERVICE);
PendingIntent contentIntent = PendingIntent.getActivity(ctx, 0, new Intent(ctx, MainActivity.class), 0);
Notification noti = new Notification.Builder(ctx)
.setContentTitle("Title")
.setSmallIcon(R.drawable.ic_launcher)
.setStyle(new Notification.BigTextStyle().bigText(ctx.getResources().getString(R.string.loremIpsum)))
.setContentText(ctx.getResources().getString(R.string.loremIpsum))
.setContentIntent(contentIntent).build();
mNotificationManager.notify(NOTIFICATION_ID, noti);
我使用的是 Android 4.1.2,所以 op 版本还可以。每个通知都是一个简单的单行消息,我看不到全文。请帮我。
编辑:
好的,我收到了长文本,但我的通知没有自动扩展,我必须用 2 个手指向下滑动。我怎么能通过代码扩展它..!?