App Crashes When Image From Gallery Gets Selected
The camera function in my app really driving me in nuts !!! I have built an camera function in my app, but it crashed when I try to select the image from gallery. Bitmap photo; pri
Solution 1:
you are missing break; between switch cases block.
Once break is put, you will not get exception as fall through will not happen to case 'REQUEST_IMAGE_CAPTURE'
Post a Comment for "App Crashes When Image From Gallery Gets Selected"