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.
I have a BroadcastReceiver which is called every so often, and I have noticed many people use android: process =":remote" …
android broadcastreceiver android-broadcastI have two apps that I made, and am trying to send an intent from one to the other but …
android android-intent intentfilter android-broadcastI am trying to use BroadcastReceiver but it is not working, please help me to solve this problem. MyReceiver.java …
android broadcastreceiver android-broadcastas mentioned here, when the screen goes off, the onStop() of current Activity will be called. I need to check …
android android-activity android-broadcastAs far as I know, apps can't get intents for their own uninstallation: ACTION_PACKAGE_FULLY_REMOVED ACTION_PACKAGE_REMOVED …
android android-intent android-broadcastI have already checked all the related questions and have not found any solution for this problem. So this is …
android broadcastreceiver android-broadcast android-broadcastreceiverAndroid android.intent.action.BOOT_COMPLETED Intent is not received if I use the "Restart" or "Reboot", but works if …
android android-intent android-broadcastMyReceiver.java public class MyReceiver extends BroadcastReceiver { @Override public void onReceive(final Context context, final Intent intent) { Log.i("MyReceiver", "…
android broadcastreceiver android-manifest android-broadcastI 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-broadcastI need to implement BroadcastReceiver in a Service class I have created: public class MyService extends Service in this class …
android android-service android-broadcast