更改playerNotificationManager的动作图标,例如播放/暂停/停止

时间:2019-10-09 10:47:28

标签: android exoplayer exoplayer2.x

我想更改ExoPlayer的PlayerNotificationManager的操作图标颜色。 有人可以帮我更改此图标吗?

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以通过在应用程序资源中重新定义资源来覆盖PlayerNotificationManager使用的图标。它们的通知图标在此处的UI模块中定义,因此(例如)您可以在应用中添加一个drawables.xml来覆盖其中的一种,例如:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <drawable name="exo_notification_pause">@drawable/my_pause_icon</drawable>
</resources>

This issue asked on ExoPlayer github

Refer to this link