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.

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
Android broadcast receiver not receiving intent

I have two apps that I made, and am trying to send an intent from one to the other but …

android android-intent intentfilter android-broadcast
BroadcastReceiver for Screen On/Off not working

I am trying to use BroadcastReceiver but it is not working, please help me to solve this problem. MyReceiver.java …

android broadcastreceiver android-broadcast
how to check screen on/off status in onStop()?

as mentioned here, when the screen goes off, the onStop() of current Activity will be called. I need to check …

android android-activity android-broadcast
Listen to own application uninstall event on Android

As far as I know, apps can't get intents for their own uninstallation: ACTION_PACKAGE_FULLY_REMOVED ACTION_PACKAGE_REMOVED …

android android-intent android-broadcast
Broadcast Receiver Not Working After Device Reboot in Android

I have already checked all the related questions and have not found any solution for this problem. So this is …

android broadcastreceiver android-broadcast android-broadcastreceiver
android.intent.action.BOOT_COMPLETED Intent is not received at "Restart" or "Reboot"

Android android.intent.action.BOOT_COMPLETED Intent is not received if I use the "Restart" or "Reboot", but works if …

android android-intent android-broadcast
How to send a custom broadcast action to receivers in manifest?

MyReceiver.java public class MyReceiver extends BroadcastReceiver { @Override public void onReceive(final Context context, final Intent intent) { Log.i("MyReceiver", "…

android broadcastreceiver android-manifest android-broadcast
Android keep BroadcastReceiver in background

I created a BroadcastReceiver and it runs only when my app shown in recent apps menu. If I remove my …

android broadcastreceiver android-service background-process android-broadcast
How do I implement a BroadcastReceiver in a Service Class in Android?

I need to implement BroadcastReceiver in a Service class I have created: public class MyService extends Service in this class …

android android-service android-broadcast