Top "Broadcastreceiver" questions

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

How to Send BroadCast from one app to another app

I have App A and App B. In App A I want to send broadcast to App B. This is …

android broadcastreceiver broadcast
How to register a custom Intent filter to a broadcast receiver in AndroidManifest.xml?

I have defined a receiver in AndroidManifest.xml to receive a PlAY_FINISHED action, and in other file I send …

android broadcastreceiver intentfilter
Android BroadcastReceiver onReceive() called twice on android 4.0

I faced to one problem on android 4.0.3 (on 4.1.2 it works fine). I have in my Activity BroadcastReceiver. When I send …

android broadcastreceiver
Get battery level before broadcast receiver responds for Intent.ACTION_BATTERY_CHANGED

I have a broadcast receiver in my program to get react to the battery level like so: private BroadcastReceiver mBatInfoReceiver = …

android broadcastreceiver battery
How to detect when user turn on/off GPS state?

I want to block the user from changing WiFi, GPS and loading settings from my application. The user need not …

android gps broadcastreceiver
ACTION_MY_PACKAGE_REPLACED not received

I am using ACTION_MY_PACKAGE_REPLACED to receive when my app is updated or resinstalled. My problem is that …

android broadcastreceiver
BroadcastReceiver Vs WakefulBroadcastReceiver

Can somebody explain what the exact difference is between BroadcastReceiver and WakefulBroadcastReceiver? In what situations would we have to use …

java android broadcastreceiver wakelock
Should I use android: process =":remote" in my receiver?

I have a BroadcastReceiver which is called every so often, and I have noticed many people use android: process =":remote" …

android broadcastreceiver android-broadcast
unfortunately app is getting stopped while checking for network

I am using the following code to check for the internet connection through out my app. public class ConnectionChangeReceiver extends …

android broadcastreceiver connectivity
Is it possible to define a broadcast receiver as an inner class in manifest file?

I want to create a broadcast receiver as an inner class in my main activity. But I have problems defining …

android android-manifest broadcastreceiver