Top "Android-broadcast" questions

A broadcast intent on the Android platform is a special intent which is often invoked by the system on an event and catched by a BroadcastReceiver.

Oreo: Broadcast receiver Not working

I was trying to get notification trigger on my application whenever the user makes a new call. I'm registering receiver …

android broadcastreceiver android-broadcast android-8.1-oreo
Android Wifi Scan - BroadcastReceiver for SCAN_RESULTS_AVAILABLE_ACTION not getting called

Here is my code: public class FloatWifiManager implements IWifiManager { private WifiManager wifiManager; private BroadcastReceiver wifiScanReceiver; public FloatWifiManager(Context context) { ... wifiManager = (…

android broadcastreceiver android-wifi android-broadcast wifimanager
Difference between Intent.ACTION_REBOOT and Intent.ACTION_SHUTDOWN

I am trying to receive (with BroadcastReceiver) the action of shutting down, booting and rebooting. I searched a lot, but …

android shutdown intentfilter reboot android-broadcast
BroadcastReceiver not working when app is not running

In my manifest file I have declared the receiver. (as follows) <receiver android:name=".OnAlarmReceive" /> however, once I …

android notifications broadcastreceiver alarmmanager android-broadcast
Android BroadcastReceiver in Service giving null pointer exception when sending broadcast to it

I have a broadcast receiver in my service, and when I send a broadcast to it from my activity to …

java android service broadcast android-broadcast
Why SMS Retriever API don't work in release mode?

I've implemented the SMS Retriever API like in the google tutorials and in my debug Build Variant work fine. I …

android android-intent android-broadcast android-broadcastreceiver android-sms
Call broadcast receiver at time of uninstalling application in android

I want to clean up the junk created by my application at time on UnInstalling the Application. Using ManiFest File:…

android android-broadcast android-package-managers
Repeating Alarm Manager After reboot

i want to create broadcast AlarmManager(repeating) with Notification message.i pass my calender object from Pickers. If i don't …

android android-service android-broadcast
Refresh the Gallery after deleting an image file?

I always found the following answer for my Question: context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://" + …

android android-intent android-broadcast
Is it good to replace broadcast receiver with Greenrobot Eventbus for triggering event based functions and data transfer from service to activity?

I have implemented a service, where I handle the state changes(connect, disconnect, onServiceDiscoverd, onCharacteristicChange etc) and receiving data from …

android android-service bluetooth-lowenergy android-broadcast greenrobot-eventbus