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) {