我希望在通知的长文本中包含换行符。 \ n 不起作用。
notification.setLatestEventInfo(context, title, message+"\r\n"+"test",intent);
android2.2通知中换行符的代码是什么?
由于
答案 0 :(得分:2)
我认为您可能需要创建一个包含两个文本视图的自定义通知布局,每个视图都用于一行。
这是通知的官方教程,但我不确定它有多少适用于2.2。 http://developer.android.com/guide/topics/ui/notifiers/notifications.html
以下链接也可能有用: Custom notification layouts and text colors