0

Possible Duplicate:
How to pass object from one activity to another in Android

I want to know is it feasible and suggested to pass values from one activity to another via objects, also when Should I pass the values before calling the Intent or after?

Community
  • 1
  • 1
Heretic Monk
  • 397
  • 1
  • 5
  • 19

1 Answers1

3

is it feasible and suggested to pass values from one activity to another via objects?

=> Yes its feasible and possible. Check: How to pass an object from one activity to another on Android

when Should I pass the values before calling the Intent or after?

=> Yes ofcourse you should pass object before starting next activity. I am amazed why you want to pass it after calling the intent?

Community
  • 1
  • 1
Paresh Mayani
  • 127,700
  • 71
  • 241
  • 295