Hi, I have a service that downloads something from the Internet, it shows progress in notifications and in MyActivity (only when MyActivity is on foreground of course). How should the service post the progress to MyActivity? I know this could be done somehow with IBind but can I just simply do this in MyActivity:
MySevice.myActivity = this; startService(new Intent(....)); ? >From MyService I can now call MyActivity's methods because I have a static reference to it in MySevice.myActivity, so I can call e.g. myActivity.sendProgress(63). -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

