2

i want to include line breaks in the long text of notifications. \n does not work.

notification.setLatestEventInfo(context, title, message+"\r\n"+"test",intent);

what is the code for the line break in the android2.2 notification ?

Thanks

samibel
  • 634
  • 2
  • 6
  • 20

1 Answers1

2

I think you might have to create a custom notification layout with two text views, each for a line.

Here's the official tutorial for notifications, I am not sure how much of it applies to 2.2 though. http://developer.android.com/guide/topics/ui/notifiers/notifications.html

The following link might be useful too: Custom notification layouts and text colors

Community
  • 1
  • 1
Ivo
  • 1,768
  • 20
  • 19