Android Notification Action is not fired (PendingIntent)

前端 未结 9 1499
盖世英雄少女心
盖世英雄少女心 2020-12-30 02:39

I am trying to add an Notification action item in my app which is a music player. When a stream is started a notification should be triggered and an stop button for the stre

9条回答
  •  礼貌的吻别
    2020-12-30 03:08

    I had a very similar issue but a very different solution. Pending intent is also not fired if you have declared in your manifest.xml file.

    Replace from android:enabled="false" to android:enabled="true"

    This might not be a direct issue of the problem. But if you create the service in android studio using default template it automatically adds these properties to the service.

提交回复
热议问题