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);