I want to figure out whether the Context object of one activity is being leaked to another activity. Does the following code leak the context of one activity to another?
Intent intent = new Intent(context, Demo.class);
context.startActivity(intent);