Can inactive Broadcast Receivers be reused?
Let's say a BroadcastReceiver is declared in the manifest. It has run through onReceive() once and is the only comp开发者_如何学JAVAonent in the hosting process. What if another Intent is broadcast, is a new process spawn every time, or would the old one be reused if it hasn't been killed?
In other words: Is the onReceive()-method only run through ONCE for each receiver object?
would the old one be reused if it hasn't been killed?
No.
Is the onReceive()-method only run through ONCE for each receiver object?
Yes, for manifest-registered receivers.
精彩评论