Hi, I have a service started by an activity that spins its own thread to perform tasks. Everytime a task is performed and finished, the service needs to send a message back to the activity to update an image and text on the current view. What I thought of using was broadcastIntent and intent receiver. However, it seems like my intent receivers are only invoked if I use the broadcastIntent call that specifies its own IntentReceiver as the final one. Otherwise, it just doesn't do anything at all. Here's how I defined the receivers in the manifest: <receiver
android:name=".app.SuperPagesMain.MainIntentReceiver" android:process=":remote" /> <receiver android:name=".app.IntentReceiverTest" android:process=":remote" /> The first is an inner-class that's declared public, the second is its own class. If either is specified in broadcastIntent, it is called correctly, but not on its own. What gives? Any insight is much appreciated, Ahmad --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] Announcing the new M5 SDK! http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~----------~----~----~----~------~----~------~--~---

