如何使我的通知使用默认的应用程序颜色?

时间:2017-03-03 11:39:23

标签: android user-interface notifications

我正在关注通知tutorial,但是,我的通知显示为灰色。

我知道有远程视图来设置它,但是这个开发人员指南不会使用它。

以下是我的通知的示例

As you can see here, my notification is all grey. I just modified the text and icon in paint to hide business stuff

1 个答案:

答案 0 :(得分:0)

在构建器中,使用.setColor() 它需要最低api

if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    builder.setColor(Color.BLUE);
}