Android wear action button action background color

I want to change the action button bg blue color to green, which method can I use? blue should be the default colored wear action button.

Notification.WearableExtender extender = new Notification.WearableExtender();
        extender.addAction(new Action(R.drawable.reply, context.getString(R.string.reply_message_btn), pendingReplyMessageIntent));
        extender.addAction(new Action(R.drawable.ignore, context.getString(R.string.not_to_disturb), pendingIgnoreTalkerIntent));
        extender.addAction(new Action(R.drawable.open_phone, context.getString(R.string.open_on_phone), pendingOpenPhoneIntent));
        notificationBuilder.extend(extender);

      

+3


source to share


1 answer


This is currently not possible - notification actions always have a blue background by default.



+3


source







All Articles