Question: =+ public void onClick(View view) { //---use an Intent object to return data--- Intent i = new Intent(); //---use the putExtra() method to return some

=+ public void onClick(View view) {

//---use an Intent object to return data---

Intent i = new Intent();

//---use the putExtra() method to return some

// value---

i.putExtra("age3", 45);

//---use the setData() method to return some value---

i.setData(Uri.parse("Something passed back to main activity"));

//---set the result with OK and the Intent object---

setResult(RESULT_OK, i);

//---destroy the current activity---

finish();

}

}

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!