0

I have created a local service .. now how do i access data that gets updated in it or how do i communicate with it ?

Arun Abraham
  • 4,011
  • 14
  • 54
  • 75
  • Here is a previous answer with an example of this. http://stackoverflow.com/questions/3197335/android-restful-api-service/3197456#3197456 – Robby Pond Mar 15 '11 at 12:57
  • hi.... my actual requirement includes data changing in the service in a regular time interval...that time i want the activity to get updated too... Can i use the same concept?? – Arun Abraham Mar 15 '11 at 14:24

1 Answers1

0

Make use of Handler and Message classes.

Raj
  • 16