Nougat RemoteInput:文本字段的颜色

时间:2017-04-04 12:16:27

标签: android-notifications android-7.0-nougat remote-input

我已经在我的应用中实施了RemoteInput,但文字区域显示为灰色背景abd我希望它像这样蓝色:

enter image description here

有没有办法做到这一点?

UPD:看起来server { listen 80; server_name ""; # Tell Nginx and Passenger where your app's 'public' directory is root /var/www/app_name/public; # Turn on Passenger passenger_enabled on; passenger_ruby /root/.rvm/gems/ruby-2.2.2/wrappers/ruby; } 似乎已用于此,但我不想在整个应用中更改它,只是在通知中

1 个答案:

答案 0 :(得分:1)

方法setColor正是我所寻找的。它还会改变图标和标题色调。

NotificationCompat.Builder(ctx)
    //....
    .setColor(ContextCompat.getColor(ctx, R.color.colorAccent))