Re: [android-developers] Sending custom intents from application to service

2010-12-04 Thread YuviDroid
In your AndroidManifest.xml, under your receiver, you should also create an with your custom action. Then create an Intent using the constructor "Intent (String action)" (by passing your custom action), and send the broadcast. I found here a simple example which might help: http://www.androidcomp

[android-developers] Sending custom intents from application to service

2010-12-04 Thread Peter Webb
I have a wallpaper app on the market. I have almost finished a customisation application for it, which I want to sell. Because it is a wallpaper, I can't use a launch intent. I have now spent many days trying to simply pass a custom intent using BroadcastReceiver. I can't find a single example on