Intent intent = new Intent(activityContext,SomeActivity.class);
startActivity(intent);
instead of activityContext can we use applicationContext, if yes, what will be the difference in newly created activity.
I know the difference between activity context and application context, but I want to know how it will effect activity if we start it using an application context.