jason wrote:
> I have an activity class that has started a service (within same
> application). How do I extract the values set in the service class?

Call a method on it. You can either:

-- put the service object in a static data member on the service class
and call into it that way, or

-- create a binding in the service and use bindService() to get a handle
to the binding, and use that to get your hands on the service object

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://twitter.com/commonsguy

Android App Developer Training: http://commonsware.com/training.html

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to