Different way of send broadcast to other applications
-
We could send broadcast to other applications in 3 ways
-
sendOrderedBroadcast(Intent, String) method sends broadcasts to one receiver at a time.
-
sendBroadcast(Intent) method sends broadcasts to all receivers in an undefined order.
-
LocalBroadcastManager.sendBroadcast method sends broadcasts to receivers that are in the same app as the sender.
Comments
Post a Comment