How to send a broadcast message in Android, from an Activity or Fragment?
Simple, use the LocalBroadcastManager. The code for sending the broadcast would look like this:
val ourIntent = Intent(ACTION_NAME).apply{ putExtra(KEY, VALUE) }
LocalBroadcastManager.getInstance(context).sendBroadcast(ourIntent)
That's it. Short and...
complicatedsimpleton.hashnode.dev1 min read