I've implemented RemoteInput in my app, but text field area appears with gray background abd I want it blue like this:
Is there are any way to do this?
UPD: Looks like colorPrimary
is used for this, but I don't want to change it in whole app, just in notification
Method setColor
is what I was looking for. It also changes icon and title tint.
NotificationCompat.Builder(ctx)
//....
.setColor(ContextCompat.getColor(ctx, R.color.colorAccent))