android-camera-intent Questions

5

Solved

In my application I have added feature of image uploading,It works fine with all the Images except camera image,whenever I browse camera image from gallery and portrait image rotate in 90 degree..f...
Sam asked 7/2, 2015 at 5:57

4

I have went through several documentation and stacks, however I'm not quite sure how do I implement this... And help or sample codes would really help me understand more. Here are the sets of cod...
Cohin asked 21/1, 2017 at 9:42

7

Solved

I need to push an intent to default camera application to make it take a photo, save it and return an URI. Is there any way to do this?
Coronograph asked 28/4, 2010 at 12:12

5

Solved

I am trying to take a photo and to save it to a custom location- public void SavePhoto(View view){ Intent imageIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); String time...
Ponderable asked 4/6, 2016 at 9:23

3

Solved

Using this piece of code is suggested and it states Notice that the startActivityForResult() method is protected by a condition that calls resolveActivity(), which returns the first activity c...
Stiegler asked 3/6, 2016 at 17:50

4

Solved

Device: Emulator pixel 3a - Android 11 Code: final List<Intent> cameraIntents = new ArrayList<Intent>(); final Intent captureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); fin...

5

I have an application where I need to be able to let the user decide how to put a picture profile, (camera or gallery). I have only one variable of type "Uri" but I do not understand how ...
Hernardo asked 25/2, 2015 at 23:22

4

Solved

Read My Whole Code. It is working perfectly on every Phone except Marshmallow and Lollipop. In Marshmallow and Lollipop phones Only problem is coming in data.getData() returning null only in case o...
Mentally asked 20/9, 2016 at 13:48

23

Solved

I'm capturing an image and setting it to image view. public void captureImage() { Intent intentCamera = new Intent("android.media.action.IMAGE_CAPTURE"); File filePhoto = new File(Environment.g...
Staats asked 28/12, 2012 at 7:17

5

Solved

I need to save the pictures taken with my app in an specific folder. I've read many solutions to this problem but I couldn't make any of them work so I ask for help. MainActivity.java public void...
Thunderstone asked 2/8, 2013 at 7:5

3

I'm trying to write a User_Comment and TAG_GPS to a captured image in an Android application using the exif interface, but for some reason the tags don't seem to be appended to the image when I vie...
Billowy asked 1/1, 2015 at 17:1

13

Solved

I want to capture image in low resolution using android camera api but when I captured image it will take default resolution of device camera.So I want to capture image in low resolution or small s...

13

Solved

I know this has been asked in many different ways but I still can not seem to delete the gallery image from the default folder. I'm saving the file to the SD card correctly and I can delete that fi...
Remorseful asked 17/6, 2011 at 18:30

3

Solved

I have one problem. When I try to get picture from camera, the quality is very low. At first, capture the picture using camera, than save to the directory and at the same time get that picture and ...
Scotch asked 30/4, 2012 at 2:14

4

I have the following code which request user to pick an image from photo apps or capture an image by camera apps: // Camera final List<Intent> cameraIntents = new ArrayList<Intent>()...
Jennifferjennilee asked 18/6, 2015 at 4:43

5

Solved

I want to display the image when I click on the photo and want to set in my ImageView without user select yes or not.... I had searched for it and I also know it very well that the camera app itsel...
Millford asked 26/7, 2016 at 4:52

15

Solved

I am building an application that uses camera to take pictures. Here is my source code to do this: File file = new File(Environment.getExternalStorageDirectory(), imageFileName); imageFilePath = f...
Largent asked 20/5, 2011 at 8:7

9

Solved

I'm trying to get my app ready for the new Android M permissions changes and found some weird behaviour. My app uses the Camera intent mechanism to allow the user to get a picture form the camera. ...

6

Solved

Friends I am facing this issue since so long but i am able to get any kind of solution to get working camera in emulator. I have gone through all the answer of the SO but none helped me uptill now...
Erythroblastosis asked 21/12, 2013 at 5:6

6

Solved

I have been trying to get path of captured image in order to delete image. Found many answers on StackOverflow but none of them are working for me. I got the following answer: private String getLa...
Alcibiades asked 2/12, 2013 at 11:29

2

Solved

I have to create a script using Espresso to test my app in Firebase test lab. My app uses Camera to capture images and I have opened the default camera app. For testing on my device I give packag...

1

After taking a picture with the camera intent, I compress the bitmap to lower the file size. The problem is that after compression, it loses all EXIF data. I have no problem retrieving the original...
Reticulation asked 20/5, 2014 at 14:9

4

Solved

I am trying to take a picture using an intent. My problem is that sometimes after taking a picture my activity, which calls startActivityForResult, seems to be destroyed so that onCreate is called ...

3

I have done a lot of researching into this issue and have seen some great responses and found some good resources of "solutions" to this problem. Unfortunately however, I'm still encountering a lot...
Disgusting asked 26/12, 2012 at 18:58

1

Solved

I develop an app that intent to Camera application to take picture and save it. but my problem is : sometimes after picture taken and my app called ,my application crashed(without onActivityResul...
Infer asked 12/9, 2018 at 11:42

© 2022 - 2024 — McMap. All rights reserved.