Set color on foreground notification

This commit is contained in:
Jannis Mattheis
2018-11-09 19:01:09 +01:00
parent 3c8b500906
commit b306c319e7

View File

@@ -164,6 +164,9 @@ public class WebSocketService extends Service {
.setContentText(message) .setContentText(message)
.setStyle(new NotificationCompat.BigTextStyle().bigText(message)) .setStyle(new NotificationCompat.BigTextStyle().bigText(message))
.setContentIntent(pendingIntent) .setContentIntent(pendingIntent)
.setColor(
ContextCompat.getColor(
getApplicationContext(), R.color.colorPrimary))
.build(); .build();
startForeground(NotificationSupport.ID.FOREGROUND, notification); startForeground(NotificationSupport.ID.FOREGROUND, notification);