Answers for "how set on click on button in android to go next activity"

3

android how to start a new activity on button click

Intent intent = new Intent(this, ActivityToBeCalled.class);
startActivity(intent);
Posted by: Guest on August-22-2020

Code answers related to "how set on click on button in android to go next activity"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language