Camera Activity Does Not Return A Result After Save
I had a code for taking photos and displaying them on map previously. Even i didn' t change the code related with that part, it doesn't work after installing android 2.3.6. I debug
Solution 1:
Add this line in onActivityResult()
super.onActivityResult(requestCode, resultCode, data);
Solution 2:
After some research I fond a solution: The problem with an external camera in Android using MediaStore.ACTION_IMAGE_CAPTURE
Post a Comment for "Camera Activity Does Not Return A Result After Save"