Yes, the notification about android does not use the \ndefault style, you must set the text in normal mode (one line), but if you want to use \nin your text, you NotificationCompat.BigTextStyle()must set
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(thisActivity)
.setSmallIcon(resourceDrowable)
.setContentTitle("My notification")
.setContentText("Hello World")
.setAutoCancel(true)
.setStyle(new NotificationCompat.BigTextStyle().bigText("My\nMessage"));