Android Notification Action is not fired (PendingIntent)

前端 未结 9 1602
盖世英雄少女心
盖世英雄少女心 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:20

    I ran into this problem today and it was caused by the activity not being registered or added to AndroidManifest.xml. I thought I had it in there but it wasn't. Also, no errors were being logged by trying to invoke the action with its intent.

    I figured this out by creating an intent and then calling startAcitivty(intent) without using a notification. It then gave me an error stating the activity was likely missing from the manifest.

    If none of the other answers solve your problem then hopefully this will. Usually tricky problems are the result of something simple and silly.

提交回复
热议问题