Top "Broadcastreceiver" questions

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

How do I start my app on startup?

I tried using the sample code in this link but it seems outdated and it did not work. So what …

android broadcastreceiver startup
Broadcast receiver for checking internet connection in android app

I am developing an android broadcast receiver for checking internet connection. The problem is that my broadcast receiver is being …

java android broadcastreceiver android-wifi android-networking
How to use LocalBroadcastManager?

How to use/locate LocalBroadcastManager as described in google docs and Service broadcast doc? I tried to google it, but …

android broadcastreceiver
Programmatically register a broadcast receiver

I'd like to know what is the best practice/way of programmatically register a broadcast receiver. I want to register …

android broadcastreceiver
Trying to start a service on boot on Android

I've been trying to start a service when a device boots up on android, but I cannot get it to …

android broadcastreceiver android-service
Get Context in a Service

Is there any reliable way to get a Context from a Service? I want to register a broadcast receiver for …

android broadcastreceiver android-service
How to check if Receiver is registered in Android?

I need to check if my registered receiver is still registered if not how do i check it any methods?

android api broadcastreceiver android-broadcast android-broadcastreceiver
Android BroadcastReceiver within Activity

I'm just trying this little sample project, all it does: Activity one has a Button that sends a Broadcast. Activity …

android broadcastreceiver
Sending and Receiving SMS and MMS in Android (pre Kit Kat Android 4.4)

I have figured out how to send and receive SMS messages. To send SMS messages I had to call the …

android sms broadcastreceiver android-manifest mms
Android - Start service on boot

From everything I've seen on Stack Exchange and elsewhere, I have everything set up correctly to start an IntentService when …

java android broadcastreceiver intentservice