通知文本太长,没有显示全文

问题描述 投票:9回答:1

我正在为Android 2.3.3开发应用程序。我正在显示通知,但是此通知的文本太长,并且未显示全文且文本已被剪切,因此如何在通知中显示全文?

这里是代码:

String message = "Tonights Taraweeh consists of Alif Lam Mim and the first quarter of Sayaqul. The Surahs covered are Al-Fatiha(The Opening),and the first two-thirds of Al-Baqara(The Cow).";
Notification notification = new Notification();
notification.setLatestEventInfo(context, title, message, contentIntent);
android notifications
1个回答
5
投票

扩展的通知仅适用于Android 4.1 read here

Android 2.3.3使用旧通知而不进行扩展。如果您要在Android 4.1或更早的版本中显示通知,则必须使用较短的文本,剪切文本(并在用户单击时显示全文)或改编文本。

© www.soinside.com 2019 - 2024. All rights reserved.