I use pending_intents and a broadcast_receiver for pending events processing. When the broadcast_receiver receives an intent it creates an instance of a ringtone with STREAM_NOTIFICATION and `play()\'
Maybe I\'m missing something. I want to write test cases for a BroadcastReceiver; specifically, it is for receiving the BOOT_COMPLETED event and setting an alarm for another receiver to handle later;
I have search Android docs and for some insane reason I am not able to find the list of all available intent filters.
I have an activity that starts a service like that: Intent youtubeIntent = new Intent(this, YoutubeFeedService.class);
I have an Android service which sends broadcast intents. I\'m trying to get those intents in another application, which is an Android service. I开发者_Python百科 wrote this in my manifest:
What\'s the correct way (if any) to redirect a received Intent to another BroadcastReceiver? 开发者_Go百科I have two BroadcastReceivers set to listen to the same intent.It works in development, but i
I am writing an app which needs to periodically check the server for new messages and notify开发者_开发问答 the user. I have seen some examples using AlarmManager to hit a BroadcastReciever which seem
Ideally, I do not want to start an activity to do this. When the WiFi connection is lost, my app needs to close because this is a fatal error for us. I w开发者_开发技巧ant to display an error message
I am just wondering about how android handles sms when it receives them. More precisely my question is when the android phone receives a sms message, which application saves the message 开发者_StackOv
Is there开发者_开发百科 an Android Intent ACTION_XXX that notifies me when an Internet Connection is available?