Answers for "changing activity + android studio"

2

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);
   }
Posted by: Guest on June-07-2020
1

android how to switch between activities

Intent intent = new Intent(getApplicationContext(), ActivityToBeOpened.class);
startActivity(intent);
Posted by: Guest on May-28-2020

Code answers related to "changing activity + android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language