Top "Broadcastreceiver" questions

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

How to use registerReceiver method?

I want to use dynamically registered BroadcastReceiver that has a reference to an Activity so it can modify its UI. …

android broadcastreceiver
Sending intent to BroadcastReceiver from adb

I've got BroadcastReceiver class: public class IntentReceiver extends BroadcastReceiver { final String tag = "Intent Intercepter"; @Override public void onReceive(Context context, …

android android-intent broadcastreceiver adb
Receiver not registered exception error?

In my developer console people keep reporting an error that I cannot reproduce on any phone I have. One person …

android broadcastreceiver illegalargumentexception
Android - SMS Broadcast receiver

I have been trying to get this program to work but so far having no luck. I cannot find where …

android sms android-intent broadcastreceiver
Broadcast Receiver within a Service

I am trying to start up a BroadcastReceiver within a Service. What I am trying to do is have a …

android sms broadcastreceiver android-service
android - How to get view from context?

I want to get the view or findViewById() from Context? Or from intent? I'm trying to reach a specific view …

android android-intent broadcastreceiver android-context
BroadcastReceiver not receiving BOOT_COMPLETED

I've looked around here for similiar problems, but for some reason my BroadcastReceiver never ends up receiving the android.intent.…

android broadcastreceiver boot
Using a broadcast intent/broadcast receiver to send messages from a service to an activity

So I understand (I think) about broadcast intents and receiving messages to them. So now, my problem/what I can't …

android android-intent broadcastreceiver
BOOT_COMPLETED not working Android

First of all, i know there has been hundreds of this kind of question asked, but i've been checking them …

android broadcastreceiver bootcompleted
BroadcastReceiver with multiple filters or multiple BroadcastReceivers?

I have an Android Activity that needs to catch two different broadcasts. My current approach is to have a single …

android android-intent broadcastreceiver