我已經註冊的廣播接收器像我的應用程序的清單文件:註銷廣播接收機表現
<receiver android:name="com.example.devicecommunication.MainActivity$proximityOffReceiver" android:enabled="true">
<intent-filter>
<action android:name="com.example.devicecommunication.PROXIMITYOFF" />
</intent-filter>
</receiver>
我已經定義在MainActivity接收器(我想執行的接收器,即使活動不在前臺)。我看到鏈接Android - how to unregister a receiver created in the manifest?。但是,如果我應該明確註銷接收者,每當應用程序退出或按下後退按鈕時,我都感到困惑?提前致謝!
我很難理解爲什麼,你能解釋更多嗎? – JamisonMan111