Android BroadcastReceiver onReceive() called twice on android 4.0

前端 未结 15 2280
梦谈多话
梦谈多话 2020-12-29 20:38

I faced to one problem on android 4.0.3 (on 4.1.2 it works fine). I have in my Activity BroadcastReceiver. When I send a broadcast, method onReceive() called always twice. P

15条回答
  •  执念已碎
    2020-12-29 21:09

    I was calling sendBroadcast(intent) multiple times in my Service class

    Removing one of them fixed the problem.

提交回复
热议问题