Intent intent = new Intent(this, newActivity.class); intent.putExtra(key:,value:); startActivity(intent);
one line code:
startActivity(new Intent(this, newActivity.class)); startActivity(new Intent(getApplicationContext(), newActivity.class));