2013-06-28 47 views
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); 
+0

請顯示一些代碼。 –

+0

您必須提供您的代碼,以便我們能夠幫助您 – HpTerm

+1

[請參閱此處](http://stackoverflow.com/q/6357450/2345913) – CRUSADER

回答

5

展開後通知僅適用於Android 4.1,read here

的Android 2.3.3使用舊的通知無擴張。您必須使用較短的文字,剪切文字(並在用戶點擊文字時顯示全文),或者如果您在Android 4.1或更舊版本中顯示通知,請修改文字。