Intent intent = new Intent(this, SecondActivity.class);
startActivity(intent);
I'm talking about that line of code above. Which I wrote in my MainActivity class under the onCreate method. It is supposed to activate the second activity. But I want to understand what is that "this" in the parameter?