Top "Broadcastreceiver" questions

BroadcastReceiver is an Android component that responds to system-wide broadcast announcements.

How to use "goAsync" for broadcastReceiver?

Background Starting with Honeycomb (API 11) , Android has a feature to allow the broadcastReceiver run in an async way, providing it …

android asynchronous broadcastreceiver android-pendingintent
Checking the Networking Connectivity using BroadcastReceiver in Android

I am using the BroadcastReceiver to check the network connectivity while my app is running.I have binded the BroadcastReceiver …

android networking broadcastreceiver connectivity
AlarmManager, BroadcastReceiver and Service not working

I'm refactoring some code so that my app will pull data from a website once a day at a given …

android broadcastreceiver alarmmanager android-pendingintent
What triggers the BluetoothDevice.ACTION_ACL broadcasts?

I would like to know what events in remote physical devices trigger ACTION_ACL_CONNECTED and ACTION_ACL_DISCONNECTED in …

android bluetooth broadcastreceiver device
Why would LocalBroadcastManager not work instead of Context.registerReceiver?

I had to implement a feature to this app which consists of an Activity and a Service working on the …

android service broadcastreceiver broadcast intentservice
Android - sendOrderedBroadcast help

I am trying to use a sendOrderedBroadcast in my Android app. I want to be able to send the Intent …

android android-intent broadcast broadcastreceiver
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
Listen for app installed / upgraded broadcast message in Android

Using Lookout app (https://play.google.com/store/apps/details?id=com.lookout), I see every time I install or …

android installation broadcastreceiver broadcast
Dynamically registering a broadcast receiver

I registered my broadcast receiver like this(given below) in the manifest file. its working fine. <receiver android:name="…

android broadcastreceiver ondestroy
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