我在LogCat中收到以下錯誤當我註冊我的BroadcastReceiver程序。我知道我沒有在活動中取消註冊我的BroadcastReceiver。MainActivity泄漏IntentReceiver
但我沒有得到這個錯誤,當我通過艙單註冊。爲什麼??????
也是什麼意思MainActivity泄漏IntentReceiver? 。它會在內存中產生什麼問題。
如果我沒有取消註冊我的BroadcastReceiver會發生什麼?
10-06 18:09:38.057: E/ActivityThread(15435): Activity com.collabera.labs.sai.MainActivity
has leaked IntentReceiver [email protected] that was
originally registered here. Are you missing a call to unregisterReceiver()?
你停止你的活動不退訂的廣播接收器?檢查Android活動生命週期http://developer.android.com/reference/android/app/Activity.html – barto90
是的。我故意停止了我的活動,但未取消訂閱BroadcastReceiver。我想知道如果我沒有取消註冊,而是在LogCat中獲取錯誤,會發生什麼情況。 – saravanan