From one Activity to another activity you can use Intent:
Intent intent = new Intent(this, YourActivity.class);
        startActivity(intent);
0
solved Android go to next page
 
From one Activity to another activity you can use Intent:
Intent intent = new Intent(this, YourActivity.class);
        startActivity(intent);
0
solved Android go to next page