Solved

We Have a Camera App Activity, and the User Just

Question 123

Essay

We have a camera app activity, and the user just took a picture. Assuming that the request and result codes are correct, write the code to retrieve the Bitmap that stores the picture taken.
protected void onActivityResult( int requestCode,
int resultCode, Intent data ) {
super.onActivityResult( requestCode, resultCode, data );
// Your code goes here

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions