From 6b48150dc9e0f73f7ac328165a42313098e842b4 Mon Sep 17 00:00:00 2001 From: Raul Menezes Date: Wed, 24 May 2017 17:08:53 -0300 Subject: [PATCH] Enable multiline notifications on android. --- .../LocalNotificationsImplementation.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Plugin.LocalNotifications.Android/LocalNotificationsImplementation.cs b/src/Plugin.LocalNotifications.Android/LocalNotificationsImplementation.cs index fd7ba26..ea2279d 100644 --- a/src/Plugin.LocalNotifications.Android/LocalNotificationsImplementation.cs +++ b/src/Plugin.LocalNotifications.Android/LocalNotificationsImplementation.cs @@ -30,6 +30,7 @@ public void Show(string title, string body, int id = 0) builder.SetContentTitle(title); builder.SetContentText(body); builder.SetAutoCancel(true); + builder.SetStyle(new NotificationCompat.BigTextStyle().BigText(body)); if (NotificationIconId != 0) {