Top "Broadcastreceiver" questions

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

Android BroadcastReceiver on startup - keep running when Activity is in Background

I'm monitoring incoming SMSs. My app is working perfectly with a BroadcastReceiver. However it is working from an Activity and …

android broadcastreceiver
Receiving package install and uninstall events

I am trying to detect when a new App is being installed but only if my app is running. I …

android broadcastreceiver
How to unregister BroadcastReceiver

My app uses a BroadcastReceiver to get sms in this way: SmsBR.java public class SmsBR extends BroadcastReceiver { @Override public …

android broadcastreceiver
Pop up window over Android native incoming call screen like true caller Android app

I am developing a broadcast receiver for incoming calls in Android and on getting incoming calls I want to inflate …

android android-layout android-widget broadcastreceiver android-broadcast
Android, Detect when other apps are launched

I'm trying to develop an app that prevents a user from getting to a specified app without a password. The …

android android-intent broadcastreceiver
Determine addAction click for Android notifications

I'm trying to use the new notifications interface. I've added 3 buttons to the notifications, and I want to save something …

android android-intent notifications broadcastreceiver android-4.0-ice-cream-sandwich
Check INTENT internet connection

Is there an Android Intent ACTION_XXX that notifies me when an Internet Connection is available? I want to instantiate …

android android-intent broadcastreceiver
startActivity() from BroadcastReceiver

I am trying to autostart my nightclock application on charging using the following BroadcastReceiver implemented in the onPause() method: BroadcastReceiver …

android android-activity broadcastreceiver
How to read all the coming notifications in android

How to read all the coming notifications in android. Is it possible to use the broadcast receiver to listen the …

android notifications broadcastreceiver
Service Intent must be explicit: Intent

I have an app some time now in which I call a service through a broadcast receiver (MyStartupIntentReceiver). The code …

android service broadcastreceiver