intent android studio code example

Example 1: intent android open activity

Intent intent = new Intent(this, DisplayMessageActivity.class);
        intent.putExtra(key:,value:);
        startActivity(intent);

Example 2: intent android

Intent intent = new Intent(MainActivity.this,Activity.class);

Example 3: android studio intent usage

Intent i = new Intent(MainActivity.this, ActivityTwo.class);
startActivity(i);

Example 4: intent android

Intent intent = new Intent(MainActivity.this,MainActivity2.class);
 intent.putExtra("key",value);
 startActivity(intent);
////////////////////
 String string =getIntent().getStringExtra("key");