这是我在onMessageReceived方法中接收的数据。
***E/received message data: {action=mail_sms, body=Test notification test notification Test..., sound=mySound, title=Test Notification Test notification}***
我的原始消息是 测试通知 测试通知 测试通知 测试通知 测试此长度的测试。但是在消息接收中,但我收到的只是这个文本测试通知测试通知测试...。我该如何解决接收完整文本的问题。
您可能需要使用 additionsetStyle(( 方法。所以你需要申请
NotificationCompat.BigTextStyle
因此,代码将添加到通知构建器中:
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder()
mBuilider.setStyle(new
NotificationCompat.BigTextStyle().bigText(message))