Skip to content Skip to sidebar Skip to footer
Showing posts with the label Broadcastreceiver

Android Reschedule Alarmmanager Alarm When App Is Killed

I've developed an app to schedule multiple local notifications to remind users to do something.… Read more Android Reschedule Alarmmanager Alarm When App Is Killed

Broadcastreceiver Not Working When App Is Installed On Sd Card

I am creating a EventsManager app in which i have a BroadcastReciver which executes for BOOT_COMPLE… Read more Broadcastreceiver Not Working When App Is Installed On Sd Card

Android: Broadcast Action_my_package_replaced Never Received

My app runs a service which is terminated when the device reboots or the app is reinstalled (update… Read more Android: Broadcast Action_my_package_replaced Never Received

Handsent App Suppresses Sms_received Broadcast

i have an app in the market that handles android.provider.Telephony.SMS_RECEIVED broadcasts. now i … Read more Handsent App Suppresses Sms_received Broadcast

Result Back From Broadcast Receiver

I am sending a broadCast from App A to app B, app B has a BroadCastReceiver to handle intent. Now I… Read more Result Back From Broadcast Receiver

Correct Pattern To Acquire A Wakelock In A Broadcastreceiver And Release It In A Service

Even after a lot of research I am still not completely sure if the way how I implement a WakeLock f… Read more Correct Pattern To Acquire A Wakelock In A Broadcastreceiver And Release It In A Service

Android: Getting Java.lang.illegalargumentexception On Unregisterreceiver()

I am having an application where user can register and unregister receiver from Settings to enable … Read more Android: Getting Java.lang.illegalargumentexception On Unregisterreceiver()

Avoid Registering Duplicate Broadcast Receivers In Android

I am trying to create my first Android app. I would like a main-thread Activity (in my case: an Act… Read more Avoid Registering Duplicate Broadcast Receivers In Android

Error In Doing Interval Task Using Broadcastreceiver And Alarmmanager In Android

I am absolute beginner to Android. So now I am trying to develop a to-do list app on my own to impr… Read more Error In Doing Interval Task Using Broadcastreceiver And Alarmmanager In Android

Pass A Value From Activity To Broadcastreceiver And Start A Service From The Broadcast Receiver

I have an activity. It contains a button whose text changes dynamically. I would like to pass thi… Read more Pass A Value From Activity To Broadcastreceiver And Start A Service From The Broadcast Receiver

Incoming Call Broadcast Receiver Not Working (android 4.1)

I'm trying to catch an incomming call broadcast but it isn't working. This is my manifest: … Read more Incoming Call Broadcast Receiver Not Working (android 4.1)

How To Unsubscribe To An Rxjava Call In A Broadcast Receiver

I am using RXJava2 to send email within a broadcast receiver and I would like to know when I should… Read more How To Unsubscribe To An Rxjava Call In A Broadcast Receiver

Call Activity Method From Broadcast Receiver Android?

In my application I am sending a port SMS to the mobile. And when the message is recieved I need to… Read more Call Activity Method From Broadcast Receiver Android?

Broadcast Receiver Is Triggered Automatically On Start

I have a registered BroadcastReceiver in my main activity. Activity sends a sticky in one of the ta… Read more Broadcast Receiver Is Triggered Automatically On Start

Android Broadcastreceiver And Android.intent.action.phone_state Event

I am catching the android.intent.action.PHONE_STATE change event by using following code snippet wi… Read more Android Broadcastreceiver And Android.intent.action.phone_state Event

Receive A Notification (via Broadcastreceiver) When Gps (or Location Services) Is Started/stopped

I tried an approach by using a BroadcastReceiver that listens for PROVIDERS_CHANGED action, but tha… Read more Receive A Notification (via Broadcastreceiver) When Gps (or Location Services) Is Started/stopped

Shared Preferences Inside Broadcastreceiver

In my app,i want to use Shared Preferences inside a broadcast receiver...But i cant access the getP… Read more Shared Preferences Inside Broadcastreceiver

Android: Presenting A Notification During A Call?

I have a broadcast receiver that listens to incoming calls. And I want to tweak the incoming call s… Read more Android: Presenting A Notification During A Call?

Android: Broadcastreceiver To Restart Killed/crashed App

I have an application and I would like to be able to restart it on the event of an error or a crash… Read more Android: Broadcastreceiver To Restart Killed/crashed App

Should Broadcastreceiver Be Declared Inside Activities?

I'm wondering what's the better cleaner design approach to handle BroadcastReceiver creatio… Read more Should Broadcastreceiver Be Declared Inside Activities?