In this video series we will learn everything about BroadcastReceivers in Android, with which we can listen to different system and application events. This way we can execute code
In part 3 of the BroadcastReceiver tutorial, we will send and receive an implicit custom broadcast with an intent action string that we define ourselves. The same as system broadca
In part 2 of the BroadcastReceiver tutorial, we will learn how to register a BroadcastReceiver dynamically. Instead of putting the receiver into the Manifest file, we register it i
In part 7 of the BroadcastReceiver tutorial, we will learn how to use the LocalBroadcastManager.nThe LocalBroadcastManager is a support library class that can register for and send
By default, a BroadcastReceiver is only active as long as it's onReceive method runs. Once this method returns, the containing app process only becomes as important as the other co
In part 2 of the notification tutorial, we will add a tap action to our notification that will open an activity, and we will add an action button that will trigger a BroadcastRecei
In this video we will learn, how to use the Alarm Manager in Android to send a notification at a desired time in the future. For this we will create a BroadCastReceiver, override i