0

I have 3 Activities: 1 Parent and 2 children. Let's call them simply Activity1, Activity2a and Activity2b;

Activity2a and Activity2b are both started from Activity1. How can I transfer data from Activity2a to Activity2b through the parent? Any ideas? I think I have to use intents but don't know how.

  • as "matheszabi" said you can use intents. Take a look at this [link](http://stackoverflow.com/questions/2091465/how-do-i-pass-data-between-activities-in-android) ;) – Majid Abarghooei Apr 06 '13 at 18:05

1 Answers1

1

Primitive types can be passed via Intent. Take a look here Reference I am passing via a common class, like MyApp

Community
  • 1
  • 1