android - Broadcast Receiver life cycle -


broadcastreceiver registered inside manifest file. happens when app not running , broadcast received?

does android create new process handle broadcast?

does class extends broadcastreceiver created?

how whole process work?

does android create new process handle broadcast?

yes, if app not running , event have registered happens, android os handles situation creating new process. if register in code, it's tied life of activity/service registered in.

does class extends broadcastreceiver created?

the application singleton , contentprovider implementations have should created.

thank you, commonsware help.


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -