As described in question I want to start a broadcast receiver on some event say a button click so I don\'t want to use it in xm开发者_开发技巧l. Any idea how to do this I searched on net but most of e
I have a BroadcastReceiver which is called every so often, and I have noticed many people use android: process =\":remote\"
I am creating just a simple android app which will respond to received. I am using braodcastreceiver to receive sms.
i have a widget which needs to listen to BATTERY_CHANGED event, however, since this event is protected and cannot be declared from the manifest i create a new Broadc开发者_如何学PythonastReceiver from
I am building an application in which I need to start a service when the time is 7pm. Is there any way t开发者_StackOverflowo do this?Use AlarmManager.
I\'m having problems calling a class function from my Widget as the result of a service action. public class HelloWidget extends AppWidgetProvider {
I have my own BroadcastReceiver instance for In开发者_StackOverflowtent.ACTION_HEADSET_PLUG action. There is about 1-2 seconds delay between actual physical unplugging a headset and a moment when my B
I want to use dynamically registered BroadcastReceiver that has a reference to an Activity so it can modify its UI. I am using Context.registerReceiver() method but r开发者_StackOverflow中文版eceiver\
I basically want to make an intent and pass it to a service from my BroadcastReceiver\'s onReceive().
I want to be able to extract text from received SMS\'s. I\'m not sure whether I should use content providers or the sms message is included in the intent received by broadca开发者_开发百科st receiver.