[android-developers] Finding out how the Intent was started

2011-06-26 Thread Neilz
Hi all. I assume there is a way of finding out how your Activity was started, for example: Intent i = new Intent(ActivtyA.this, ActivityB.class); ...when B starts, I want to find out the activity that started it, which in this case would be an instance of ActivityA. How can I get this

Re: [android-developers] Finding out how the Intent was started

2011-06-26 Thread Mark Murphy
On Sun, Jun 26, 2011 at 7:06 AM, Neilz neilhorn...@gmail.com wrote: I assume there is a way of finding out how your Activity was started, for example: Intent i = new Intent(ActivtyA.this, ActivityB.class); ...when B starts, I want to find out the activity that started it, which in this case