1

Possible Duplicate:
More efficient way of updating UI from Service than intents?

I have a RSS Feed reader application. I am handling the feed reading in a service, but I don't know how to update the UI. What would be the best way to handle this?

Nimantha
  • 6,405
  • 6
  • 28
  • 69
Gratzi
  • 4,633
  • 12
  • 42
  • 58

1 Answers1

1

My suggestion to you is, create a handler for the UI part which updates the text field or UI components.

Secondly, have notifications from the service to the activity by way of interface class.

rene
  • 41,474
  • 78
  • 114
  • 152
Vinay
  • 2,395
  • 3
  • 30
  • 35