Possible Duplicate:
Use of Context to start another Activity
I am starting activity by "startActivity(new Intent(aContext,class))" method in a class which is inherited by Activity class.
My question is: what is the first parameter of Intent's constructor either Application Context or Activity Context? Please explain . What is the memory issue by using either of these?
When use application context and when activity context? Please explain with a simple example.