Question: =+ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_second); //---get the data passed in using getStringExtra()--- Toast.makeText(this,getIntent().getStringExtra(str1), Toast.LENGTH_SHORT).show(); //---get the data passed in using getIntExtra()---

=+ @Override public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_second);

//---get the data passed in using getStringExtra()---

Toast.makeText(this,getIntent().getStringExtra("str1"), Toast.LENGTH_SHORT).show();

//---get the data passed in using getIntExtra()---

Toast.makeText(this,Integer.toString(

getIntent().getIntExtra("age1", 0)), Toast.LENGTH_SHORT).show();

//---get the Bundle object passed in---

Bundle bundle = getIntent().getExtras();

//---get the data using the getString()---

Toast.makeText(this, bundle.getString("str2"), Toast.LENGTH_SHORT).show();

//---get the data using the getInt() method---

Toast.makeText(this,Integer.toString(bundle.getInt("age2")), Toast.LENGTH_SHORT).show();

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Implementing Programming Languages Questions!