Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to send data that reside in the Activity file and extends service that receive data how is it Possible i dont want to use Intent here show me the way

share|improve this question

1 Answer

up vote 0 down vote accepted

If your service runs in the the same process as your activity you can use:

  • Intents - the best and recommended way. Why you don't want to use them?
  • Static variables
  • Shared preferences
  • Database

If your service runs in a different process than your activity:

share|improve this answer
becoz if i use intent activity will be changed and my data is dynamic so i cant use static variable – Rstar Feb 21 '12 at 14:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.