Answers for "android studio switch to another activity"

10

intent android open activity

Intent intent = new Intent(this, DisplayMessageActivity.class);
        intent.putExtra(key:,value:);
        startActivity(intent);
Posted by: Guest on May-19-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 "android studio switch to another activity"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language