Intents Going from one activity to another in android studio
This is simple code to go from one to other activity in android studio.
Intent intent = new Intent(getApplicationContext(),Nextactivity.class);
startActivity(intent);
This is simple code to go from one to other activity in android studio.
Intent intent = new Intent(getApplicationContext(),Nextactivity.class);
startActivity(intent);
Comments
Post a Comment