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.

Differentiate implicit broadcast receiver vs explicit broadcast receiver in the manifest

According to the migration guide to Android O given by Google, most of the implicit broadcast intent should not be …

android android-intent android-manifest android-broadcast android-8.0-oreo
Android 8.0 Oreo AlarmManager with broadcast receiver and implicit broadcast ban

I have critical reminders that are set via the Alarm Manager (It should function the same way as an alarm …

android broadcastreceiver android-broadcast
Dynamic Registration vs Static Registration of BroadcastReceiver

All of us known we register BroadcastReceiver in two types 1)Static Registration 2)Dynamic Registration But my doubt is when we …

android broadcastreceiver android-broadcast
Access to application class in Broadcast Receiver

I want to check internet connection in Broadcast Receiver; And set result (A boolean flag) to a global variable, to …

broadcastreceiver android-lifecycle android-broadcast android
Alarm Manager does not work in background on Android 6.0

This is my Activity code, Long time = new GregorianCalendar().getTimeInMillis()+20000;//Setting alarm after 20 sec Intent intentAlarm = new Intent("alarm"); intentAlarm.…

android android-intent android-broadcast android-alarms android-broadcastreceiver
Broadcast receiver push notification

I have implemented push notification in my android application: In my main class: // PUSH Parse.initialize(this, applicationId, clientKey); PushService.…

android push-notification broadcastreceiver android-notifications android-broadcast
How to receive USB connection status broadcast?

I am trying to detect USB connection in my app, that is, whether or not USB is connected to device. …

android android-intent android-broadcast android-broadcastreceiver
How to start hidden app by using call dialer(keypad) using Android code?

I want to start my app which is a hidden app by dialing certain predfined number by me programatically ,for …

android android-broadcast
Android ACTION_DATE_CHANGED broadcast

I have a Nexus S, and when I change the date manually on the phone, ACTION_DATE_CHANGED is not …

android android-intent broadcastreceiver android-broadcast
Listen incoming calls through BroadcastReceiver, without PhoneStateIntentReceiver or PhoneStateListener

Is there any way to listen to incoming calls by extending BroadcastReceiver to listen to OS's broadcast,without using PhoneStateIntentReceiver …

android android-broadcast