I would like to pass a string from broadcast receiver to activity. I have raised a notification when I clicked on notification. I am starting an activity in that activity I would like to show string a
I have used a timer method in an Activity class. In that method I have an intent from Activity class to a BroadcastReceiver class.
i made a BroadcastReceiver that is listening for changes in the PHONE_STATE. in the onReceive method, i\'d like to turn off the system vibrator. i tried different approaches, but non of them worked so
Is there a way to implement a service that would listen for started applications? Say -开发者_如何学C \"now the Browser is started\" or something like that?Maybe you\'re looking for an ActivityManage
I wanted to create a broadcastreceiver which listens for android.intent.action.MEDIA_BUTTON, and get the extra_key_event from that and act accordingly. Somehow the onreceive action is not performed.
I\'m very new to Android development and would like to know how to play a SoundPool sound within abroadcastreceiver?
I am trying to pass arbitrary data to a BroadcastReceiver through its Intent. So I might do something like the following
Even after a lot of research I am still not completely sure if the way how I implement a WakeLock for a Service started by a BroadcastReceiver is correct - even though it seems to work fine. The broad
I am implementing SMSListener in my app and I have set it\'s possibly highest priority as android:priority=\"2147483647\" so that I should get the call on new incoming sms.
I am creating a recurring alarm, which I want to be able to communicate with the Activity that called it.I can send Intent data over to the BroadcastReceiver but getting information back from the Acti