Answers for "start new activity android intent"

0

start activity intent

Intent myIntent = new Intent(CurrentActivity.this, NextActivity.class);
myIntent.putExtra("key", value); //Optional parameters
CurrentActivity.this.startActivity(myIntent);
Posted by: Guest on November-02-2021
0

start new activity android

startActivity(new Intent(getApplicationContext(), ActivityName.class));
Posted by: Guest on November-23-2021

Code answers related to "start new activity android intent"

Browse Popular Code Answers by Language