9

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

2 に答える 2

7

拡張通知は Android 4.1 以降でのみ利用可能です。こちらをお読みください

Android 2.3.3 は古い通知を展開せずに使用します。Android 4.1 以前で通知を表示する場合は、短いテキストを使用するか、テキストを切り取る (ユーザーがクリックしたときに全文を表示する) か、テキストを調整する必要があります。

于 2013-06-28T06:29:58.687 に答える