android通知setContent中奇怪的白色扩展

时间:2017-01-28 06:49:14

标签: android notifications android-notifications

尝试实现自定义通知,但是当我尝试强制扩展它时,我正在对通知进行这种可怕的扩展(在我的情况下并不期望它)。这种情况只发生在我关闭屏幕然后尝试与通知进行交互时,如果它正常运行并且在我强行尝试时不会扩展。

还尝试通过设置如下通知颜色来掩盖白色扩展:

.setColor(ContextCompat.getColor(context, R.color.notification_background_light))

没有太大区别。

测试环境
设备 :LG H815
操作系统 :Android 6.0

SNAPHOT: here

代码:

builder = new NotificationCompat.Builder(context);

        builder.setSmallIcon(R.mipmap.ic_launcher)
                .setContent(remoteViews)
                .setContentIntent(pendingIntent)
                .setColor(ContextCompat.getColor(context, R.color.notification_background_light))
                .setOngoing(true);

        notificationManager.notify(notification_id,builder.build());

我不知道这是否是我身边的错误 提前致谢

0 个答案:

没有答案