LocalBroadcastManager: Intra application message passing

Read Time 2 minutes Using Broadcast receivers is good practice if you want to send and receive data between different applications. However its not good at all if you are using them for communication internal to application. There are many reasons for NOT using broadcast:  A broadcast is sent system-wide, so this is not performance efficient.  When we use …

LocalBroadcastManager: Intra application message passing Read More »