I am adding some basic alarm functionality to my program via the use of AlarmManager and a BroadcastReceiver class (named AReceiver.java).My problem is that the data I add to the bundle attached to th
Does anyone know what is the intent for missed call. Actually i want to send sms on missed call and incomming call开发者_JS百科 in my application. You need to use a ContentObserver
I have a service setup to receive a PACKAGE_ADDED and a PACKAGE_REMOVED intent from all <data android:scheme=\"package\" />
When my android app is removed, I would like to also remove files the app has created on the SD card, as these can consume many megabytes and are only of use to my app.
I am currently working on an app that uses a broadcastreceiver to check for incoming text messages, but all of the sudden it seems to have stopped working, I even wrote a small test application that,
I see that multiple broadcasts (ACTION_TIME_TICK, for example) cannot be registered in the manifest, the must be explicitly registered via Context.registerReceiver(). I am having trouble with the ACTI
In my code there is an inner class that extends BroadcastReceiver. And I have added the following line to the AndroidManifest.xml:
My music application constantly plays music in the background, however I\'d like to be able to detect when another application starts playing audio (such as the Yo开发者_如何学PythonuTube app) so I ca
Is it possible to listen for entries to the log? Ie is there a broadcast intent for when a log ent开发者_如何学Gory is appended?there is no Intent.
I have a problem. I am trying to make a broadcast receiver acquire a wake lock so my alarmwill wake the phone from sleep mode.