Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change Notification action text color in Android N?

Tags:

android

Android N Notification actions

Is it possible to change the text color of 'FIRE'/'AMBULANCE'/'POLICE'?

Or add icons to them like in older versions of Android?

Pre N Android Notification actions

like image 316
adithya321 Avatar asked Dec 10 '16 07:12

adithya321


1 Answers

NotificationCompat.Builder builder = new NotificationCompat.Builder(context);
    builder.setColor(ContextCompat.getColor(context, R.color.colorPrimary));

NotificationCompat.Builder.setColor method is used to set an accent color for the notification, which will also be applied to action buttons' text.

like image 179
Eric Tjitra Avatar answered Sep 22 '22 18:09

Eric Tjitra