我正在为 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);