I successfully have used this code snippet before, but with the file pointing to somewhere on the SD card.
Im trying to capture an image from the camera, and if its too big i want to compress the bitmap and send it back to the sd card. I initially tried to pull the image directly into internal memory but a
Im trying to capture an image from the camera, compress it, then store it to the SD card. If I directly save it to the SD card using the code directly below, I get the full image. But if i try and loa
I have an Android app that calls the native camera app to take a picture and returns the image for further manipulation. My problem, is that I run into memory leaks if the camera is set to 2(+) megapi
For my app I am making, I have the camera intent run when an activity is created.The problem is that when I click ok for the pic I captured, it just reopens the camera again to take a picture.Here is
I want to show camera\'s current take image using like given this code.I can get image from camera and display in imageview.I want to know that image\'s file name.
I am trying to implement camera events in android开发者_运维知识库. I am a newbie at this. How exactly does one go about listening to events like didCancel and didFinishPickingMedia? please advise. I
When the Android camera opens it fills up the screen in width and height but actually I want the app to open and limit upto certain dimensions on the screen aka BarCode Scanner but here the catch is t
1) If I try to pass extra data to Intent to another activity like this: Intent intent = new Intent(mContext, NoteActivity.class);
I have a little problem with my camera intent. As I know, when camera orientation is changed, activity is restarted. Okej, I am using the code bellow.