I have a broadcast receiver that needs to listen to network changes - BroadcastReceiver networkStateReceiver = new BroadcastReceiver() {
I\'ve found a lot of pages about this in the web, but none of them helped me. I\'ve been for hours stucked in this problem. That\'s why i decided to make my own question.
Go SMS recently updated with a new feature \"Disable other message notification\". The feature causes other applications listening to the incoming SMS broadcast to not fire. For example my application
I have the latest update for my Samsung Galaxy S2 and now my application stop working (App don\'t receive sms). I have SMSReceiver extends from BroadcastReceiver with SMS_RECEIVED action.
i have following problem: i write broadcastReceiver that receive android.intent.action.BOOT_COMPLETED all work fine if i do restart from power options or remove battery, but if i use POWER OFF - powe
I\'m starting a service from an Activity. The service registers for Battery Changed broadcast Receiver. I receive broadcasts as long as the screen is ON. Once the screen is turned OFF, I stop receivin
What is the integer value开发者_高级运维 the gives a broadcast receiver the highest priority? <intent-filter android:priority=\"1\">
Here is my source code. public class MainActivity extends Activity { private static String content; private static String phone;
I know about using registerReceiver and unregisterReceiver in Java code for dealing with receivers, but let\'s say I have the following in my manifest:
Does c开发者_StackOverflow社区alling startActivity send a broadcast? (and if so can I capture it?)Yes and yes, as that is essentially what is happening when you start an Activity. You are broadcasting