问题描述
- 关于app异常报错哪位大神帮帮忙
-
04-14 11:38:55.357: E/ActivityThread(6617): Activity com.example.activity.MainActivity has leaked IntentReceiver com.android.internal.policy.impl.PhoneWindow$5@41ea3230 that was originally registered here. Are you missing a call to unregisterReceiver()?
04-14 11:38:55.357: E/ActivityThread(6617): android.app.IntentReceiverLeaked: Activity com.example.activity.MainActivity has leaked IntentReceiver com.android.internal.policy.impl.PhoneWindow$5@41ea3230 that was originally registered here. Are you missing a call to unregisterReceiver()?
解决方案
你丢失了对unregisterReceiver()调用
解决方案二:
你的广播接收器在onDestroy中未解除注册(反注册)
解决方案三:
广播只注册了没解除绑定
时间: 2025-01-30 06:33:53