Answers for "android studio start 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
0

android studio start activity

startActivity(new Intent(getApplicationContext(), newActivity.class));
Posted by: Guest on September-07-2021
1

intent jump to new activity

//Intent i = new Intent(getApplicationContext(), Second.class);
               // startActivity(i);
Posted by: Guest on October-07-2020

Code answers related to "android studio start activity"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language