go to next activity after clicking in view android studio code example
Example 1: how to move from one activity to another in android studio on button click
// also use set onclick listener
public void next(View view) {
Intent intent = new Intent(this,Activity2.class);
startActivity(intent);
}
Example 2: android how to start a new activity on button click
Intent intent = new Intent(this, ActivityToBeCalled.class);
startActivity(intent);